Back Matter
Back Matter
The H EAVISIDE unit function , also called the unit step function, is defined
according to ⎧
7 ⎪
⎨ 1 for t > a,
1 for t ≥ a,
H(t − a) := or H(t − a) : 12 for t = a, (A.1a,b)
0 for t < a, ⎪
⎩
0 for t < a,
where t is the time variable and t = a denotes a time at which a step change
has been occured (Fig.A.1).
H (t-a ) H (t-a )
1 1
1
2
0 a t 0 a t
.
n
σ(t) = σ0 H(t) + Δσi H(t − Θi ) , (A.3b)
i=1
286 A The H EAVISIDE and D IRAC Functions
6
h (t)
0 a 2 a 4 a t
Fig. A.2 Several steps
Adding and subtracting unit step functions at times t equal to a, 2a, 3a, ...
we arrive at the square wave
.N
h(t) = H(t) + 2 (−1)n H(t − na) (A.5)
n=1
0
a 2 a 3 a 4 a 5 a t
-1
The unit step function (A.1) is defined in M APLE under the name Heavi-
side. For example, the influence of the H EAVISIDE function on sin(t) and
cos2 (t) is illustrated in Fig. A.4a.
A 1.mws
> alias(H=Heaviside,th=thickness):
> plot1:=plot(H(t-1),t=0..Pi,th=3):
> plot2:=plot(sin(t)*H(t-1), t=0..Pi, th=3):
> plot3:=plot((cos(t))ˆ2*H(t-1),
> t=0..Pi,th=3):
> plots[display]({plot1,plot2,plot3});
1
H(t−1)
0.8 H(t−1)sin(t)
0.6
0.4
H(t−1)cos2 (t)
0.2
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 2.2 2.4 2.6 2.8 3
tt
Fig. A.4a Influence of the H EAVISIDE function on sin(t) and cos2 (t)
Another example is illustrated in Fig. A.4b, where the vertical lines have
been produced by H EAVISIDE functions.
A 2.mws
> alias(H=Heaviside,th=thickness):
> plot1:=plot({-1,1,2,3,4,5}, X=0..5,-1..5,
> scaling=constrained, color=black,th=2):
> plot2:=plot({5*H(x-1)+5*H(x-1.001),
> -H(x-1)-H(x-1.001), 5*H(x-2)+5*H(x-2.001),
> 2+H(x-3.5)+3*H(x-3.501),5*H(x-5)+
> 5*H(x-5),-H(x-5)-H(x-5.001)},
> x=0..5.00001, -1..5, color=black, th=3):
> plots[display]({plot1,plot2});
288 A The H EAVISIDE and D IRAC Functions
0 1 2 3 4 5
–1
In some Figures, for instance in Fig. B.1, H EAVISIDE functions have been
used in order to generate vertical lines.
Besides the H EAVISIDE unit function (A.1) the D IRAC delta function,
also called the unit impulse function, plays a central role in creep mechanics,
for instance in (11.11b), and is defined according to
7
0 for t = a,
δ(t − a) := (A.6)
∞ for t = a .
and
A The H EAVISIDE and D IRAC Functions 289
&∞
δ(t − a) f (t)dt = f (a) (A.8)
0
@ A (t - a )
1
A
1 /A
a t
Fig. A.5 D IRAC delta function with ε > 0
&L
!
δ(x − xi )R(x)dx = R(Xi ) = 0 , (A.10)
0
d
δ(t − a) = H(t − a) ≡ Ḣ(t − a) (A.12)
dt
and may be deduced in the following way. The modified delta function (A.9)
can be represented by the H EAVISIDE function (A.1) as
1
δε (t − a) = [H(t − a) − H(t − a − ε)] (A.13a)
ε
or for a = 0 according to
1
δε (t) = [H(t) − H(t − ε)] . (A.13b)
ε
Then, we immediately find the D IRAC delta function by forming the follow-
ing limit
H(t) − H(t − ε)
δ(t) = lim δε (t) = lim = Ḣ(t) (A.14)
ε→0 ε→0 ε
in accordance with (A.12), that is, the D IRAC delta function is the deriva-
tion of the H EAVISIDE function. This relation is illustrated in Fig. A.6a,b by
comparing Fig. A.1 with Fig. A.5.
A 3.mws
> with(stats):
> with(statevalf):
> H:=statevalf[pdf,normald[1,0.2]]:
> delta:=statevalf[cdf,normald[1,0.2]]:
> plot({H(t),delta(t)},t=0..2,thickness=3);
> H:=statevalf[pdf,normald[1,0.03]]:
> delta:=statevalf[cdf,normald[1,0.03]]:
> plot({H(t),delta(t)},
> t=0..2,0..2,thickness=3);
A The H EAVISIDE and D IRAC Functions 291
δ (t−1; 0.2)
1.5
H(t−1; 0.2)
0.5
Fig. A.6a Relation between the modified H EAVISIDE function (A.16) and the modified
D IRAC function (A.15); parameters: a = 1, σ = 0.2
2
1.8 δ (t−1; 0.03)
1.6
1.4
0.8
0.6
0.4
0.2
is considered in Fig. A.6 as a modified D IRAC delta function, and is, ac-
cording to (A.14), the derivative of the modified (continuous) H EAVISIDE
function
&t : 2 ;
1 1 x−a
H(t − a; σ) := √ exp − dx . (A.16)
σ 2π 2 σ
−∞
&∞
δ(t − a; σ)dt = 1 , (A.17)
−∞
y(t) := 2 D t
x(t) := 1 − t2
> H(t):=(1/Pi)*arctan(y(t),x(t));
arctan(2 D t, 1 − t2 )
H(t) :=
π
> plot1:=plot(subs(D=infinity,H(t)),
> t=0..3,0..1):
> plot2:=plot(subs(D=0.5,H(t)),t=0..3,0..1):
> plot3:=plot(subs(D=0.1,H(t)),t=0..3,0..1):
> plot4:=plot(subs(D=0.05,H(t)),t=0..3,0..1):
> plot5:=plot(subs(D=0,H(t)),t=0..3,0..1):
> plots[display]({plot1,plot2,plot3,
> plot4,plot5});
D=0
1
H(t−1; D) D=0.1
0.8
D=0.5
0.6
D=
8
0.4
0.2
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 2.2 2.4 2.6 2.8 3
tt
2D a2 + t2
δ(t − a; D) := Ḣ(t − a; D) = , (A.19)
π (a2 − t2 )2 + 4D2 t2
1.8
δ (t−1; D)
1.6
1.4
1.2
1 D=0.01
0.8
D=0.1
0.6
0.4
D=0.5
0.2
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 2.2 2.4 2.6 2.8 3
tt
Fig. A.8 Modified D IRAC delta functions (A.19)
As we can see in the M APLE output (Fig. A.8), the ”modified” D IRAC
delta functions (A.19) have the property (A.7) for all D > 0. For D = 0 the
delta function (A.19) is a vertical line at t = a = 1 with an area identi-
cal to zero in contrast to the G AUSS distribution (A.15), which satisfies the
condition (A.7) also for σ identical to zero.
B The L APLACE Transformation
where the function f (t) of t is mapped into a function F (s) of the trans-
formed variable s, which may be real or complex. In the following, the lower
limit of the integral in (B.1) is fixed at t = 0, i.e., the one-side (right side)
L APLACE transformation
&∞
L{f (t)} ≡ fˆ(s) := f (t)e−st dt (B.2)
0
Then, the L APLACE transform L{f (t)} exists for all s > a, and the function
f (t) is of exponential order a.
Proof:
&∞ &∞
−st M
| L{f (x)} |≤ | f (t) | e dt ≤ M e−(s−a)t dt = . (B.4)
s−a
0 0
296 B The L APLACE Transformation
Since M/(s − a) has a finite value for s > a, the integral in (B.2) is
bounded. This establishes the absolute convergence of the integral defining
L{f (t)}. The convergence is uniform, if s ≥ α0 > a, where α0 is fixed. If
s is complex, the above integral converges absolutely, provided the real part
Re(s) ≥ α0 > a.
Due to the theorem (B.3) the class of admissible functions f (t), for which
the L APLACE transform (B.2) exists, is large enough for practical applica-
tions. A lot of L APLACE transform pairs, fˆ(s) ⇐⇒ f (t), is listed in a table
at the end of this appendix. Further examples can be found in the M APLE
program. The exponential function exp(at) is admissible as has been shown
in (B.4) for M = 1. Any periodic function that is piecewise continuous on
its periodic is transformable. Polynomials are also admissible.
Let f (t) = exp(at) with a = iωt. Then, the L APLACE transformation
(B.2) yields
1 s + iω
L{eiωt } = L{cos ωt + i sin ωt} = ≡ 2 . (B.5)
s − iω s + ω2
Since the operator L{} is linear,
where the latter integral is convergent for p > −1 and represents the G AMMA
function (11.33) defined as
&∞
Γ (p + 1) := xp e−x dx with p > −1 (B.11a)
0
or
&∞
Γ (r) := xr−1 e−x dx with r > 0 . (B.11b)
0
The G AMMA function (B.11b) is drawn with MAPLE in Fig. B.1, where
some integer points are marked.
B 1.mws
> alias(H=Heaviside, th=thickness):
> plot1:=plot({6,6*H(r-4)},r=0..4.001):
> plot2:=plot(GAMMA(r),r=0..4,0..6,th=3):
> plots[display]({plot1, plot2});
6
5
Γ (r)
4
3 Γ (n+1)=n!
0 1 2 3 4
r
and finally
Γ (n + 1) = n! , (B.13)
Γ (p + 1) n!
L{tp } = or L{tn } = , (B.14a,b)
sp+1 sn+1
B.1 Linearity
or
&a
L{f (t + a)} = eas [fˆ(s) − f (t)dt] (B.20b)
0
It is assumed that f (n) (t) is admissible in the sense of (B.3) and that all the
lower derivatives are continuous for t > 0. The values at 0+ are limits as
t → 0 from the right.
The derivative rule (B.22) can be deduced by induction in the following
way.
Assuming that f (t) is a continuous function which an admissible deriva-
tive f (t), integration by parts yields:
&∞ &∞
∞
L{f (t)} =
f (t)e −st
dt = f (t)e−st + s
0
f (t)e−st dt ,
0 0
where the upper limit of the first term on the right-hand side vanishes, while
the lower limit is equal to f (0+ ). Thus, we obtain the following fundamental
result:
L{f (t)} = sL{f (t)} − f (0+ ) . (B.23)
B.7 Differentiation of L APLACE Transforms 301
Taking into consideration (B.23) and (B.24), the differential equation (B.25)
with the initial values transforms according to
hence
s+4 s+4 3 1
L{x(t)} = = = +
s2 + 6s + 5 (s + 1)(s + 5) 4(s + 1) 4(s + 5)
and, similar to (B.17), the inverse transform, taken from the table of trans-
forms, is the solution
3 1
x(t) = e−t + e−5t (B.26)
4 4
of the initial-value problem (B.25).
d(n) fˆ(s)
fˆ(n) (s) = = (−1)n L{tn f (t)} . (B.27)
dsn
This rule can be obtained as follows. The first derivative of (B.2) with respect
to s is:
&∞
dfˆ(s)
= − tf (t)e−st dt ≡ −L{tf (t)} ,
ds
0
302 B The L APLACE Transformation
n!
L{tn eωt } = . (B.28)
(s − ω)n+1
where the first term on the right-hand side is zero at both limits, t = 0 and
D∞
t = ∞, if the integral f (τ )dτ converges. Thus, the integration rule (B.29)
0
has been proofed.
As an example, we find
⎧ t ⎫
⎨& ⎬ 1 ω
L sin ωτ dτ = L{sin ωt} ≡ , (B.30)
⎩ ⎭ s s(s2 + ω 2 )
0
&t
ϕ(t) := f1 (Θ)f2 (t − Θ)dΘ ≡ f1 ∗ f2 . (B.32a)
0
Introducing the substitution τ = t − Θ, the definition (B.32a) can alterna-
tively be expressed in the form
&t
ϕ(t) := f2 (τ )f1 (t − τ )dτ ≡ f2 ∗ f1 . (B.32b)
0
Comparing both forms, we see that the convolution of two functions is com-
mutative, i.e.,
304 B The L APLACE Transformation
f1 ∗ f2 = f2 ∗ f1 . (B.33)
which states that the convolution in the original region corresponds to the
usual multiplication in the transformed region. In other words:
The L APLACE transform of the convolution of two functions is
identical with the product of the L APLACE transforms of these
two functions.
This theorem can be proofed in the following way. For
&∞ &∞
−su
fˆ1 (s) = e f1 (u)du and fˆ2 (s) = e−sv f2 (v)dv , (B.35a,b)
0 0
Thus, the area element dtdw in the mapped t-w-plane is equal to the corre-
sponding area element dudv in the u-v-plane (Fig. B.2). Then, the double
integral in (B.36) can be expressed as
⎡ ⎤
&∞ &t
fˆ1 (s)fˆ2 (s) = ⎣ f2 (w)f1 (t − w)dw⎦ e−st dt ≡ L{f2 ∗ f1 } (B.40)
0 0
in accordance with (B.34) and (B.33). The ranges of integration of the double
integrals in (B.36) and (B.40) are illustrated in Fig. B.2.
v w u=0
3 3 u=1
=t
2 2 u=2
w
1 1 u=3
u t
1 2 3 1 2 3
Fig. B.2 Ranges of integration in the u-v- and t-w-plane
g ∗ f3 = f1 ∗ h (B.41b)
by substituting
g ≡ f1 ∗ f2 and h ≡ f2 ∗ f3 . (B.42a,b)
Applying the convolution theorem to the left-hand side and right-hand side
of (B.41b), we obtain
and
L{f1 ∗ h} = fˆ1 ĥ = fˆ1 L{f2 ∗ f3 } = fˆ1 (fˆ2 fˆ3 ) , (B.43b)
respectively. Since the ordinary multiplication on the right-hand sides in
(B.43a,b) is associative,
f1 ∗ (f2 + f3 ) = f1 ∗ f2 + f1 ∗ f3 (B.45)
carried out on both sides of the equation of motion (B.47b) by taking the
transform (B.24) into account yields
ω2
L{x(t)} = L{f (t)} ≡ L{g(t)}L{f (t)} . (B.49)
s2 + ω 2
Thus, applying the convolution theorem (B.34), the solution of the problem
(B.47b) can be represented as (B.32a,b), i.e.:
&t
x(t) = g(t) ∗ f (t) = f (Θ)g(t − Θ)dΘ , (B.50)
0
&t
x(t) = ω f (Θ) sin ω(t − Θ)dΘ (B.51)
0
with an arbitrary forcing function F (t) = kf (t) and with the assumed initial
values x(0) = 0 and ẋ(0) = 0.
If the system is subjected to an external harmonic function of magnitude
F (t) = F0 sin Ωt, we obtain the following special solution:
&t
F0
x(t) = ω sin ΩΘ sin ω(t − Θ)dΘ ,
k
0
&t
F0
x(t) = ω Im eiΩΘ sin ω(t − Θ)dΘ ,
k
0
F0 /k Ω
F (t) = F0 sin Ωt =⇒ x(t) = 2
sin Ωt − sin ωt .
1 − (Ωω)
ω
(B.52a)
If the external harmonic function has a magnitude of F (t) = F0 cos Ωt, we
find in a similar way the following solution of the initial-value problem
(B.47b):
F0 /k
F (t) = F0 cos Ωt =⇒ x(t) = 2
cos Ωt − cos ωt .
1 − (Ωω)
(B.52b)
308 B The L APLACE Transformation
The H EAVISIDE and D IRAC functions (Appendix A) play a central role, for
instance, in the theory of viscoelasticity (Chapter 11).
The L APLACE transform of the H EAVISIDE function (A.1a) is given by
1
L{H(t − a)} = e−as , (B.53a)
s
since
&∞ &a &∞
1
L{H(t − a)} = H(t − a)e dt = 0 · e dt + 1 · e−st dt ≡ e−sa .
−st −st
s
0 0 a
f(t)
1 1 −as
L{H(t − a) − H(t − b)} = e − e−bs ,
s
a b t
(B.53b)
which is utilized, when the response of the K ELVIN model subjected to the
shear stress
τ (t) = τ0 [H(t − a) − H(t − b)] (B.54)
should be analysed. The differential equation (11.19) of the K ELVIN model
can be written as
Applying the L APLACE transformation with (B.23) and taking the loading
(B.54) with its transform (B.53b) into account, we arrive at the L APLACE
transform
τ0 e−as − e−bs
L{γ(t)} = , (B.56)
G s(1 + λs)
the inverse of which is the response γ = γ(t) of the K ELVIN model. First let
us find the inverse of the transform
e−as
L{ϕ(s)} = ≡ fˆ1 (s)fˆ2 (s) , (B.57)
s(1 + λs)
B.10 L APLACE Transforms of the H EAVISIDE and D IRAC Functions 309
where
e−as 1
fˆ1 (s) ≡ and fˆ2 (s) ≡ (B.58a,b)
s 1 + λs
have been introduced. Because of (B.53a) and by considering (B.28) with
n = 0 and ω = −1/λ, the inverse forms of (B.58a,b) are given by
and
1
L−1 {fˆ2 (s)} ≡ f2 (t) = e−t/λ . (B.59b)
λ
Applying the convolution theorem (B.34) with (B.32a) and (B.57) to
(B.59a, b), we find the inverse of (B.57) according to
&t
1
ϕ(t) = f1 ∗ f2 = H(Θ − a) e−(t−Θ)/λ dΘ (B.60a)
λ
0
or
&t
1 −(t−Θ)/λ
ϕ(t) = e dΘ = 1 − e−(t−a)/λ . (B.60b)
λ
a
Thus, the solution γ = γ(t) of (B.56), i.e., the creep behavior of the K ELVIN
model subjected to a step loading (B.54) can be expressed by the following
creep function:
G / 0 / 0
γ(t) = H(t − a) 1 − e−(t−a)/λ − H(t − b) 1 − e−(t−b)/λ
τ0
(B.61)
This function and the H EAVISIDE function (B.54) are illustrated in Fig. B.3.
B 2.mws
> alias(H=Heaviside, th=thickness):
> plot1:=plot(H(t-1)-H(t-6),t=0..12,th=3):
> plot2:=plot(H(t-1)*(1-exp(-(1/2)*(t-1))-
> H(t-6)*(1-exp(-(1/2)*(t-6))),t=0..12,th=3):
> plots[display]({plot1,plot2});
310 B The L APLACE Transformation
HEAVISIDE
1
0.8
λ= 2
0.6
0.4
KELVIN
0.2
0 2 4 6 8 10 12
t
Fig. B.3 Creep behavior of a K ELVIN model subjected to a constand load between
t = 1 and t = 6
F0 ω F0
L{x(t)} = ⇒ x(t) = sin ωt (B.65)
k s2 + ω 2 k
for t > 0. The initial value ẋ(0) = 0 assumed in (B.64) is not satisfied.
Because of
F0 F0
ẋ(t) = ω cos ωt → ẋ(0) = ω,
k k
the unit D IRAC impuls produces a jump of magnitude ωF0 /k in the velocity
ẋ(0) at time t = 0. Thus, the function x(t) is continuous indeed, but not
differentiable at t = 0.
Another example is concerned with the deflection curve of a statically in-
determinate beam rigidly clamped at both ends and loaded by a concentrated
Force F as schown in Fig. B.4.
F
EI
x
a
y
Fig. B.4 Statically interdeterminate beam
d4 y F
4
= δ(x − a) (B.66)
dx EI
taking the following boundary conditions into account:
C1 C2 F e−as
L{y(x)} = 3
+ 4 + . (B.68)
s s EI s4
From (B.28) we read the inverse transforms
x2 x3
L−1 {1/s3 } = and L−1 {1/s4 } = . (B69a,b)
2! 3!
The third term on the right-hand side in (B.68) can be decomposed according
to
exp(−as)
= fˆ1 (s)fˆ2 (s) , (B.70)
s4
where the transforms
1 exp(−as)
fˆ1 (s) := 3 and fˆ2 (s) := , (B.71a,b)
s s
have been introduced. The inverse transforms can be read from (B.69a) and
(B.53a), respectively,
x2
f1 (x) := L−1 {fˆ1 (s)} = (B.72a)
2!
and
or
&x
−1 1 (x − τ )2 (x − a)3
L exp(−as) = dτ = . (B.73)
s4 2! 3!
a
Adding the parts (B.69a,b) and (B.73) we obtain from (B.68) the deflection
curve of the statically indeterminate beam (Fig. B.4) according to
C1 2 C2 3 F (x − a)3
y(x) = x + x + H(x − a) , (B.74)
2! 3! EI 3!
where the constants C1 and C2 can be determined by inserting the end con-
ditions (B.67c,d) into (B.74) as:
F F
C1 = α(1 − α)2 and C2 = −(1 + 2α)(1 − α)2 , (B.75a,b)
EI EI
respectively. Thus, the final solution in dimensionless representation is given
by
EI , -
192 3
y(ξ) ≡ η(ξ; α) = 96(1 − α)2 α − 13 (1 + 2α)ξ ξ 2
F (B.76)
+32(ξ − α)3 H(ξ − α)
where ξ ≡ x/ and α ≡ a/. The deflection curve (B.76) has a maximum at
ξopt = 1/(3 − 2α) for α ≤ 1/2 (B.77a)
and
1
η(ξ) := 96 (1 − α)2 (α − (1 + 2 α) ξ) ξ 2 + 32 (ξ − α)3 H(ξ − α)
3
> plot1:=plot(subs(alpha=1/4,-eta(xi)),xi=0..1):
> plot2:=plot(subs(alpha=1/2,-eta(xi)),xi=0..1):
> plot3:=plot(subs(alpha=2/3,-eta(xi)),xi=0..1):
> plots[display]({plot1,plot2,plot3});
314 B The L APLACE Transformation
ξ
0.2 0.4 0.6 0.8 1
0
–0.2
α =2/3 α =1/4
–0.4
–0.6
–0.8
α =1/2
–1
Fig. B.5 Deflection curve (B.76) of a beam clamped at both ends according to Fig. B4
where the function f (t) and the kernel function K(Θ, t) are known, while
y(t) is unknown, can easily be solved by utilizing the L APLACE transforma-
tion: We differentiate the following types:
❒ If a and b are constant, then equation (B.78) is called a F RED -
HOLM integral equation.
❒ If a is constant and b = t we have a VOLTERRA integral equation.
❒ If a = 0 and b = t, the equation (B.78) is an integral equation of
a convolution type.
The last type,
&t
y(t) = f (t) + K(t − Θ)y(Θ)d(Θ) , (B.79)
0
B.11 L APLACE Transformation for Integral Equations 315
can be written as
y(t) = f (t) + K(t) ∗ y(t) , (B.80)
since the integral in (B.79) is the convolution of the kernel function K(t) and
the unknown function y(t) according to the definition (B.32a,b).
Applying the L APLACE transformation to (B.80) and taking the convolu-
tion theorem (B.34) into account, we arrive at the transforms:
or
L{y(t)} = L{f (t)}/ [1 − L{K(t)}] , (B.81)
from which we find the solution by forming the inverse:
= / 0>
y(t) = L−1 {ŷ(s)} = L−1 fˆ(s) 1 − K̂(s) . (B.82)
&t
1
κ(t) = 1 + e−(t−Θ)/λ κ(Θ)dΘ . (B.84)
λ
0
1 1 1 + λs
κ̂(s) = + κ(s) =⇒ κ̂(s) = . (B.85)
2 1 + λs λs2
Using a table of transforms, we obtain the inverse of (B.85), i.e. the creep
function
κ(t) = 1 + t/λ (B.86)
&t
∂κ(t − Θ)
r(Θ)d(Θ) + κ(0)r(t) = 1 , (B.87)
∂t
0
for the K ELVIN creep function (11.8). The L APLACE transformation yields
1 1 1
r̂(s) = =⇒ r̂(s) = + λ. (B.89)
1 + λs s s
Using a table of transforms, we obtain the inverse of (B.89), i.e. the relax-
ation function
r(t) = 1 + λδ(t) (B.90)
&t
−t/λ 1
y(t) = 1 − e + e−(t−Θ)/λ y(Θ)d(Θ) , (B.91)
λ
0
&t
y(t) = ωt + ω sin ω(t − θ)y(θ)dθ (B.94)
0
ω ω2 1 ω2
ŷ(s) = 2 + 2 ŷ(s) ⇒ ŷ(s) = ω + , (B.95)
s s + ω2 s2 s4
This result has been checked by utilizing the following M APLE program:
B 4.mws
> int_eqn:=y(t)-
> omega*int((sin(omega*(t-Theta))*y(Theta),
> Theta=0..t))=omega*t;
& t
int eqn := y(t) − ω sin(ω (t − Θ)) y(Θ) dΘ = ω t
0
> with(inttrans):
> laplace(int_eqn,t,s);
ω 2 laplace(y(t), t, s) ω
laplace(y(t), t, s) − = 2
s2 + ω 2 s
> readlib(isolate)(%,laplace(y(t),t,s)):
> simplify(%);
ω (s2 + ω 2 )
laplace(y(t), t, s) =
s4
> invlaplace(%,s,t):
> y(t,omega):=simplify(rhs(%));
ω t (6 + ω 2 t2 )
y(t, ω) :=
6
> Y(Theta,omega):=subs(t=Theta, y(t,omega));
ω Θ (6 + ω 2 Θ2 )
Y(Θ, ω) :=
6
318 B The L APLACE Transformation
> # check:
> int_eqn:=simplify(y(t,omega)-
> omega*int(sin(omega*(t-Theta))*
> Y(Theta,omega),Theta=0..t));
int eqn := ω t
> # Thus, the solution (B.96) is correct.
Further integral equations are solved in the next M APLE programs.
B 5.mws
> int_eqn:=y(t)+
> omega*integrate((sin(omega*(t-Theta))*
> y(Theta),Theta=0..t))=1;
& t
int eqn := y(t) + ω sin(ω (t − Θ)) y(Θ) dΘ = 1
0
> with(inttrans):
> laplace(int_eqn,t,s);
ω 2 laplace(y(t), t, s) 1
laplace(y(t), t, s) + 2 2
=
s +ω s
> readlib(isolate)(%,laplace(y(t),t,s)):
> simplify(%);
s2 + ω 2
laplace(y(t), t, s) =
s (s2 + 2 ω 2 )
> invlaplace(%,s,t):
> y(t,omega):=simplify(rhs(%));
1 1 √
y(t, ω) :=
+ cos( 2 ω t)
2 2
> Y(Theta,omega):=subs(t=Theta,y(t,omega));
1 1 √
Y(Θ, ω) := + cos( 2 ω Θ)
2 2
> # check
> int_eqn:=y(t,omega)+
> omega*int(sin(omega*(t-Theta))
> *Y(Theta,omega),Theta=0..t);
int eqn := 1
B.11 L APLACE Transformation for Integral Equations 319
B 6.mws
> int_eqn:=
> y(t)+omega*integrate((cos(omega*(t-Theta))
> *y(Theta),Theta=0..t))=1;
& t
int eqn := y(t) + ω cos(ω (t − Θ)) y(Θ) dΘ = 1
0
> with(inttrans):
> laplace(int_eqn,t,s);
ω laplace(y(t), t, s) s 1
laplace(y(t), t, s) + 2 2
=
s +ω s
> readlib(isolate)(%,laplace(y(t),t,s)):
> simplify(%);
s2 + ω 2
laplace(y(t), t, s) =
s (s2 + ω 2 + ω s)
> evalc(invlaplace(%,s,t)):
> y(t,omega):=simplify(rhs(%));
√
2 (− ω t ) √ t 3ω
y(t, ω) := 1 − e 2 3 sin( )
3 2
> Y(Theta,omega):=subs(t=Theta,%);
√
2 (− ω Θ ) √ Θ 3ω
Y(Θ, ω) := 1 − e 2 3 sin( )
3 2
> # check:
> int_eqn:=y(t,omega)+
> omega*int(cos(omega*(t-Theta))*
> Y(Theta,omega),Theta=0..t);
int eqn := 1
> # Thus, the solution is correct.
> y(t,1/2):=subs(omega=1/2,y(t,omega));
√
1 2 (− t ) √ t 3
y(t, ) := 1 − e 4 3 sin( )
2 3 4
> y(t,2):=subs(omega=2,y(t,omega));
320 B The L APLACE Transformation
2 (−t) √ √
y(t, 2) := 1 − e 3 sin(t 3)
3
> alias(H=Heaviside, th=thickness,c=color):
> plot1:=plot({1,1.1,1.1*H(t-8*Pi/sqrt(3))},
> t=0..8.001*Pi/sqrt(3),c=black):
> plot2:=plot({y(t,1/2),y(t,2)},
> t=0..8.001*Pi/sqrt(3),0.4..1.1001,c=black):
> plots[display]({plot1,plot2});
1.1
0.9
ω =2 ω =1/2
0.8
0.7
0.6
0.5
0.4 0 2 4 6 8 10 12 14
t
Fig. B.6 Solution of the above integral equation for ω = 1/2 and ω = 2
B 7.mws
> VOLTERRA:=y(t)-omega*integrate((t-Theta)*
> y(Theta),Theta=0..t)=exp(I*omega*t);
& t
VOLTERRA := y(t) − ω (t − Θ) y(Θ) dΘ = e(ω t I)
0
VOLTERRA:=convert(%,‘trig‘);
>
& t
VOLTERRA := y(t) − ω (t − Θ) y(Θ) dΘ = cos(ω t) + sin(ω t) I
0
> with(inttrans):
> laplace(VOLTERRA,t,s);
ω laplace(y(t), t, s) s ωI
laplace(y(t), t, s) − 2
= 2 2
+ 2
s s +ω s + ω2
> readlib(isolate)(%,laplace(y(t),t,s)):
B.11 L APLACE Transformation for Integral Equations 321
> simplify(%);
(s + ω I) s2
laplace(y(t), t, s) =
(s2 + ω 2 ) (s2 − ω)
> invlaplace(%,s,t):
> y(t,omega):=simplify(rhs(%));
√ √ √
ω cos(ω t) + cosh( ω t) + ω sinh( ω t) I + ω sin(ω t) I
y(t, ω) :=
1+ω
> y[re](t,omega):=(omega*cos(omega*t)+
> cosh(sqrt(omega)*t))/(1+omega);
√
ω cos(ω t) + cosh( ω t)
yre (t, ω) :=
1+ω
> y[im](t,omega):=(omega*sin(omega*t)+
> sqrt(omega)*sinh(sqrt(omega)*t))/(1+omega);
√ √
ω sin(ω t) + ω sinh( ω t)
yim (t, ω) :=
1+ω
> # check of the real part:
> Y[re](t,omega):=subs(t=Theta,%%);
√
ω cos(ω Θ) + cosh( ω Θ)
Yre (t, ω) :=
1+ω
> VOLTERRA[re]:=simplify(y[re](t,omega)-
> omega*int((t-Theta)*%,Theta=0..t)):
> VOLTERRA[re]:=simplify(convert(%,‘trig‘));
VOLTERRAre := cos(ω t)
> # Thus the real part of the above solution
> is correct.
> # In a similar way one can check the
> imiginary part.
322 B The L APLACE Transformation
B 8.mws
> volterra:=y(t)-int((t-Theta)ˆ3*y(Theta),
Theta=0..t)=1-t+tˆ2-tˆ3;
& t
volterra := y(t) − (t − Θ)3 y(Θ) dΘ = 1 − t + t2 − t3
0
> with(inttrans):
> laplace(volterra,t,s);
6 laplace(y(t), t, s) 1 1 2 6
laplace(y(t), t, s) − 4
= − 2+ 3− 4
s s s s s
> simplify(readlib(isolate)
> (%,laplace(y(t),t,s)));
s3 − s2 + 2 s − 6
laplace(y(t), t, s) =
s4 − 6
> Digits:=4;
> evalf(invlaplace(%%,s,t));
Digits := 4
10 36 Θ 9 36 Θ 54 36 Θ
Yi (Θ) := cosh( )+ cos( )− sinh( )
11 23 98 23 49 23
19 36 Θ
+ sin( )
41 23
> volterra:=Y(t)-int((t-Theta)ˆ3*Y[i](Theta),
> Theta=0..t):DELTA(t):=1-t+tˆ2-tˆ3-%:
B.11 L APLACE Transformation for Integral Equations 323
> error_norm:=
> L[2]=evalf(sqrt(int(%ˆ2,t=0..1)),15);
error norm := L2 = 0.00142880337743571
For Digits:=10 the error-norm is given by L2 = 0.2246731 10−6 as
shown on the CD-ROM B 9.mws .
B 10.mws
> ABEL:=int((1/sqrt(t-Theta))*y(Theta),
> Theta=0..t)=T;
& t
y(Θ)
ABEL := √ dΘ = T
0 t−Θ
This is a singular integral equation. For the special case of
the tautochrone the right hand side T is independent of t.
> with (inttrans):
> laplace(ABEL,t,s);
& t
y(Θ) T
laplace √ dΘ, t, s =
0 t−Θ s
> laplace(1/sqrt(t),t,s)*laplace(y(t),t,s)=
> laplace(T,t,s);
√
π laplace(y(t), t, s) T
√ =
s s
> readlib(isolate)(%,laplace(y(t),t,s));
T
laplace(y(t), t, s) = √ √
s π
> invlaplace(%,s,t);
T
y(t) = √
π t
# check:
> ABEL:=Int(T/Pi/sqrt(Theta)/sqrt(t-Theta),
> Theta=0..t)=int(T/Pi/sqrt(Theta)/
> sqrt(t-Theta),Theta=0..t);
324 B The L APLACE Transformation
& t
T
ABEL := √ √ dΘ = T
0 π Θ t−Θ
The last result in the table is explained in more detail in the following
MAPLE-program.
B 11.mws
> abel:=int((1/sqrt(t-Theta))*y(Theta),
Theta=0..t)=ln(a*t);
& t
y(Θ)
abel := √ dΘ = ln(a t)
0 t−Θ
This is a singular integral equation.
> with (inttrans):
> laplace(abel,t,s);
& t
y(Θ) γ + ln(s) ln(a)
laplace √ dΘ, t, s = − +
0 t−Θ s s
appliction of the convolution theorem:
> laplace(1/sqrt(t),t,s)*laplace(y(t),t,s)=
> laplace(ln(a*t),t,s);
√
π laplace(y(t), t, s) γ + ln(s) ln(a)
√ =− +
s s s
> readlib(isolate)(%,laplace(y(t),t,s));
γ + ln(s) ln(a) √
(− + ) s
laplace(y(t), t, s) = s √ s
π
> invlaplace(%,s,t);
2 ln(2) ln(t) ln(a)
√ √ +√ √ +√ √
π t π t t π
y(t) = √
π
> simplify(%);
B.11 L APLACE Transformation for Integral Equations 325
3 √ 20
y(t) = − cos( 17 t) +
17 17
> # check:
>
> Diff(y(t),t)+Int(cos(4*(t-Theta))*(20/17-(3/17)*
> cos(sqrt(17)*Theta)),Theta=0..t)=(3/sqrt(17))*
> sin(sqrt(17)*t)+int(cos(4*(t-Theta))*
> (20/17-(3/17)*cos(sqrt(17)*Theta)),Theta=0..t):
> Delta:=rhs(%)-sin(4*t);
Δ := 8 sin(t) cos(t)3 − 4 sin(t) cos(t) − sin(4 t)
> Delta:=simplify(%);
Δ := 0
> # Thus, the solution is correct.
&T
1
L{f (t)} = f (t) exp (−st) dt , (B.98)
1 − exp (−sT )
0
&∞
L{f (t)} = f (t)e−st dt =
0
&T &2T (n+1)T
&
= f (t)e−st dt + f (t)e−st dt + ... f (t)e−st dt + ...
0 T nT
(n+1)T
&
∞
.
L{f (t)} = f (t)e−st dt .
n=0 nT
(B.99)
Substituting t ≡ τ + nT yields
∞ &
.
T
> assume(a>0):
> f[1]:=H(t)+2*sum(((-1)ˆn)*H(t-n*a),n=1..5):
> plot(subs(a=1,f[1]),t=0..5,th=3,scaling=
> constrained,style=point,numpoints=10000);
1
0.8
0.6
0.4
0.2
0 1 2 3 4 5
–0.2 t
–0.4
–0.6
–0.8
–1
The function (B.102) has a period of T = 2a. Thus, we have to insert into
the formula (B.98) only the following part of the periodic function(B.102),
which represents (B.102) within the first period 0 ≤ t < 2a. The result is
given by
1 1 − exp (−as) 1 as
L{f (t)} = ≡ tanh , (B.104)
s 1 + exp (−as) s 2
> alias(H=Heaviside):
> f:=H(t)-2*H(t-a)+H(t-2*a);
B.13 Application to Partial Differential Equations 329
> LAPLACE:=subs(H(a)=1,%);
e(−a s) − 1
LAPLACE := − (B.104)
s (e(−a s) + 1)
>
Alternatitively, we can find the L APLACE transform (B.104) in the fol-
lowing way.
Because of the L APLACE transform (B.53a) and taking the linearity rule
(B.6) into account, we immediately arrive at the L APLACE transform
: ∞
;
1 .
n
L{f (t)} = 1+2 (−1) exp (−nas) (B.105)
s
n=1
of the periodic function (B.102), where the infinite series can be expressed
as
∞
. ∞
.
(−1)n exp (−nas) = (−1)n exp (−nas) − 1 . (B.106)
n=1 n=0
The first term on the right-hand side in (B.106) is a geometric series, which
converges to the limit
1 − (−1)n exp (−nas) 1
lim = . (B.107)
n→∞ 1 + exp(−as) 1 + exp (−as)
Hence, the L APLACE transform (B.105) yields the result (B.104).
Another example is f (t) = sin(ωt) with a period of T = 2π/ω. The
formula (B.98) immediately furnishes the L APLACE transform (B.8b).
∂c ∂2c
=D 2 with t ≥ 0 and x ≥ 0 (B.108)
∂t ∂x
We call ĉ(x, s) the time transform of c(x, t). Thus, the L APLACE transforma-
tion in (B.110) and (B.111) is assumed to be interchangeable with the partial
derivative ∂/∂x with respect to the non-transformed spatial variable x.
Assuming the conditions
x
c(ξ, t) = c0 [1 − erf(ξ)] with ξ ≡ √ (B.118b)
2 Dt
aoptimal 1 := 1.172868316
aoptimal 2 := 1.201270935
aoptimal 3 := 1.202760580
aoptimal 4 := 1.202782281
aoptimal 5 := 1.202782515
aoptimal ∞ := 1.202782517
The corresponding L-two error norms are given as:
> for r in [1,2,3,4,5,infinity] do
> L[2][r]:=evalf(sqrt((1/r)*int((erf(xi)-
> tanh(a[optimal][r]*xi))ˆ2,xi=0..r)))
> od;
L21 := 0.008219954058
B.13 Application to Partial Differential Equations 333
L22 := 0.01428838030
L23 := 0.01216051374
L24 := 0.01053649880
L25 := 0.009424169402
L2∞ := 0.
Depending on the range [0, r] we obtain the following inverse functions:
> for r in [1,2,3,4,5,infinity] do
> inverse[r]:=(1/a[optimal][r])*arctanh(xi)
> od;
0.8
0.6
0.4
0.2
0 0.5 1 1.5 2
xi
Fig. B.8 Error function and approximant on [0, 2]
334 B The L APLACE Transformation
> Delta(xi):=erf(xi)-tanh(a[optimal][2]*xi);
Δ(ξ) := erf(ξ) − tanh(1.201270935 ξ)
> for i from 1 to 3 do
> zero[i-1]:=fsolve(Delta(xi)=0,
> xi,(i-1)/2..i/2) od;
zero 0 := 0.
zero 1 := 0.8439158081
3
zero 2 := fsolve(erf(ξ) − tanh(1.201270935 ξ) = 0, ξ, 1.. )
2
> plot1:=
> plot({-0.02,0.02,0.02*H(xi-5),-0.02*H(xi-5)},
> xi=0..5.001,color=black):
> plot2:=
> plot(erf(xi)-tanh(a[optimal][5]*xi),
> xi=0..5,color=black,th=3):
> plots[display]({plot1,plot2});
0.02
0.01
0 1 2 3 4 5
xi
–0.01
–0.02
> L[2][5]:=sqrt((1/5)*Int((Delta)ˆ2,xi=0..5))=
> evalf(sqrt((1/5)*int((erf(xi)-
> tanh(a[optimal][5]*xi))ˆ2,xi=0..5)));
3&
1√ 5
L25 := 5 Δ2 dξ = 0.009424169402
5 0
The following Figures illustrate the erro function erf(xi) and some inverse
approximations (1/a)*arctanh(xi):
> plot1:=plot({1,xi,H(xi-1)},xi=0..1.001,
> scaling=con,color=black):
B.13 Application to Partial Differential Equations 335
> plot2:=plot({erf(xi),(1/a[optimal][1])*
> arctanh(xi)},xi=0..1,0..1,color=black,th=2):
> plots[display]({plot1,plot2});
0.8
0.6
0.4
0.2
> plot1:=plot({1,2,xi,2*H(xi-2),2*H(xi-1),
> -2*H(xi-1.002)},xi=0..2.001,scaling=con):
> plot2:=plot({erf(xi),(1/a[optimal][2])*
> arctanh(xi)},xi=0..2,0..2,th=2):
> plots[display]({plot1,plot2});
2
1.8
1.6
1.4
1.2
1
0.8
0.6
0.4
0.2
0 0.5 1 1.5 2
xi
> plot1:=plot({1,5,xi,5*H(xi-5),
> 5*H(xi-1),-5*H(xi-1.002)},
> xi=0..5.001,scaling=con,color=black):
> plot2:=plot({erf(xi),
> (1/a[optimal][5])*arctanh(xi)},
> xi=0..5,0..5,color=black,th=2):
> plots[display]({plot1,plot2});
0 1 2 3 4 5
xi
The results show that the approximant tanh(aξ) furnishes a suitable ap-
proximation to the error function erf(xi). In view of the inverse (1/a) tanh(ξ)
and the approximant tanh(aξ) the influence of the range [0, r] on the param-
eter a is less important.
In the following tables some pairs of L APLACE transforms are listed. Ad-
ditional examples can be found in many textbooks, for instance in the books
of A MELING (1984), B RONSTEIN et al.(2000; 2004), D OETSCH (1971-73),
to name just a few. Furthermore, it is very convenient to use modern com-
puter algebra systems, for instance M ATHEMATICA or M APLE, which are
powerful tools indispensable in modern pure and applied scientific research
and education.
B.13 Application to Partial Differential Equations 337
D∞
f (t) for t>0 L{f (t)} ≡ fˆ(s) = f (t)e−st dt
0
a a/s
at a/s2
(1/2!)t2 1/s3
(1/3!)t3 1/s4
1
(1/n!)tn ; (n ≥ 0, integer)
sn+1
(n − 1)!
tn−1 exp(at) ; (n ≥ 1, integer)
(s − a)n
n!
tn n+1
; (n ≥ 0, integer)
s
Γ (p + 1)
tp ; (p > −1)
sp+1
δ(t) D IRAC 1
δ(t − a) exp(−as)
1
exp(at)
s−a
1 1
exp(−t/λ)
λ 1 + λs
1
1 − exp(−t/λ)
s(1 + λs)
1
t exp(at)
(s − a)2
1 1
t exp(−t/a)
a2 (1 + as)2
D∞
f (t) for t>0 L{f (t)} ≡ fˆ(s) = f (t)e−st dt
0
exp(at) − exp(bt) 1
a−b (s − a)(s − b)
a exp(at) − b exp(bt) s
a−b (s − a)(s − b)
s
(1 + at) exp(at)
(s − a)2
1 2 1
t exp(at)
2 (s − a)3
1 2 s
t + at exp(at)
2 (s − a)3
1 s + iω
exp(iωt) ≡ 2
s − iω s + ω2
ω
sin ωt
s + ω2
2
s
cos ωt
s2 + ω 2
2ω 2
sin2 ωt
s(s2 + 4ω 2 )
s2 + 2ω 2
cos2 ωt
s(s2 + 4ω 2 )
s sin ϕ + ω cos ϕ
sin(ωt + ϕ)
s2 + ω 2
s cos ϕ − ω sin ϕ
cos(ωt + ϕ)
s2 + ω 2
ω
exp(αt) sin ωt
(s − α)2 + ω 2
s−α
exp αt cos ωt
(s − α)2 + ω 2
D∞
f (t) for t>0 L{f (t)} ≡ fˆ(s) = f (t)e−st dt
0
ω
sinh ωt
s2 − ω2
s
cosh ωt
s − ω2
2
2ω 2
sinh2 ωt
s(s2 − 4ω 2 )
s2 − 2ω 2
cosh2 ωt
s(s2 − 4ω 2 )
ω
exp(αt) sinh ωt
(s − α)2 − ω 2
s−α
exp(αt) cosh ωt
(s − α)2 − ω 2
t ωs
sin ωt
2 (s + ω 2 )2
2
s2 − ω 2
t cos ωt
(s2 + ω 2 )2
t ωs
sinh ωt
2 (s − ω 2 )2
2
s2 + ω 2
t cosh ωt
(s2 − ω 2 )2
t2 sinh ωt 3s2 + ω 2
2ω (s2 − ω 2 )3
1 2 s3 + 3ω 2 s
t cosh ωt
2 (s2 − ω 2 )3
1 1
√ √
πt s
<
t 1
2 √
π s s
D∞
f (t) for t>0 L{f (t)} ≡ fˆ(s) = f (t)e−st dt
0
<
4 t 1
t √
3 π s2 s
exp(−at) 1
√ √
πt s+a
√
erf at 1
√ √
a s s+a
t ν−1 1
exp(−at)
Γ (ν) (s + a)ν
a a2 √
√ exp(− ) exp(−a) s
2 πt3 4t
a2 √
exp(− ) exp(−a s)
√ 4t √
πt s
/ 0
x 1
erf √ 1 − exp(−x s/D)
2 Dt s
x 1
erfc √ exp −x s/D
2 Dt s
1 − exp(at) s−a
ln
t s
exp(bt) − exp(at) s+a
ln
t s−a
a 1 1
a + b [1 − exp(−ct)] +b −
s s s+c
2
√ c c
bc π exp erfc √
, √ - a 1 4s 2 s
a + b 1 − exp(−c t) +
s 2 s3/2
exp(s2 /4) erfc(s/2)
erf(t)
s
B.13 Application to Partial Differential Equations 341
1 1
H (t−a) exp(−as)
s
a t
1
1 [exp(−as) − exp(−bs)]
H (t−a) − H (t−b) s
a b t
a 2a 4a t
.
N
: (geometrical series) ;
H(t) + 2 (−1)n H(t − na) 1 .N
n=1 1+2 (−1)n exp(−nas)
s
n=1
1
for N → ∞
a 2a 3a 4a t ⇓
−1 1 1 − exp(−as)
·
s 1 + exp(−as)
1 for N → ∞
⇓
4a
1
a 2a 3a t
s(1 + exp(as))
H(t−a)−H(t−b)−H(t−c)+H(t−d)
1
1 [exp(−as) − exp(−bs)
s
− exp(−cs) + exp(−ds)]
a b c d t
−1
(t − a)H(t − a) − (t − b)H(t − b)
1 1
[exp(−as) − exp(−bs)]
s2
a b t
1 λ
exp(−as)
1 + λs
a a+ λ t
a a+ λ t
B.13 Application to Partial Differential Equations 343
&T
1
f (t) = f (t + nT ) n ∈ IN f (t)e(−st) dt
1 − e(−sT )
0
1 T = 2a
1 1 − exp(−as) as
· ≡ tanh
s 1 + exp(−as) 2
a 2a 3a t
1
1 T = 2a
s [1 + exp(as)]
a 2a 3a t
−1
−1
References
A DAMS , B., B OEHLER , J., G UIDI , M. and O NAT, E. (1992). Group theory and represen-
tation of microstructure, and Mechanical behavior of polycrystals, J. Mech. Phys. Solids
40: 723–747.
A IMEDIEU , P. (2004). Contributation à la biomécanique de tissues mous intrácraniens,
PhD Thesis of Université de Picardie Jules Vernes, Faculte de medicine, Amiens Cedex,
France.
A L -G ADHIB , A., BALUCH , M., S HAALAN , A. and K HAN , A. (2000). Damage Model for
Monotonic and Fatigue Response of High Strength Concrete, Int. Journal of Damage
Mechnics 9: 57–78.
A LTENBACH , H., A LTENBACH , J. and S CHIESSE , P. (1990). Konzept der Schädigungs-
mechanik und ihre Anwendung bei der werkstoffmechanischen Bauteilanalyse, Tech
Mech 11: 81–93.
A LTENBACH , H., M ORACHKOVSKY, O., NAUMENKO , K. and S YCHOV A. (1997). Geomet-
rically nonlinear bending of thin-walled shells and plates under creep damage conditions,
Arch Appl Mech 67: 339–352.
A LTENBACH , J., A LTENBACH , H. and NAUMENKO , K. (1997). Lebensdauerabschätzung
dünnwandiger Flächentragwerke auf der Grundlage phenomenologischer Materialmod-
elle für Kriechen und Schädigung, Tech Mech 12: 353–364.
A LTENBACH , J., A LTENBACH , H. and Z OLOCHEVSKY, A. (1995). Erweiterte Deformation-
smodelle und Versagenskriterien der Werkstoffmechanik, Deutscher Verlag für Grund-
stoffindustrie, Stuttgart.
A MELING , W. (1984). Laplace Transformation, 3. edn, Vieweg-Verlag, Braunschweig /
Wiesbaden.
A NAND , L. (1982). Constitutive Equations for the Rate-Dependent Deformation of Metals
at Elevated Temperatures, Transactions of the ASME 104: 12–17.
A NAND , L. (1985). Constitutive Equations for Hot-Working of Metals, Intern. J. of Plasticity
1: 213–231.
A NDRADE , E. (1910). The viscous flow in metals and allied phenomena, Proc. R. Soc.
London A 84: 1–12.
A NDRADE , E. (1914). Flow of Metals under large constant Stress, Proc. Roy. Soc. A 90: 329–
342.
A RGON , A. (1982). Mechanism and mechanics of fracture in creeping alloys, in
B. W ILSHIRE and D. OWEN (eds), Recent Advantages in Creep and Fracture of En-
gineering Materials and Structures, Pinerage Press, Swansea, pp. 1–52.
A RONS , R. and T IEN , J. (1980). Creep and strain recovery in hot-pressed silicon nitride, J.
of Materials Science 15: 2046–2058.
A SHARE , E. (1968). Rheological properties of narrow distribution polystyrene solutions,
Trans. Soc. Rheol. 12: 535–557.
A SHBY, M. and J ONES , D. (1980). Engineering Materials 1, Pergamon Press, Oxford/New
York/.../ Toronto. reprinted 1989.
346 References
pp. 702–708. Presented at the sixth Int. Conf. on Mathem. Modelling in St Louis, Mis-
souri, USA, August 1987.
B ETTEN , J. (1989). Generalization of nonlinear material laws found in experiments to multi-
axial states of stress, Eur. J. Mech. A/Solids 8: 325–339. Presented at Euromech Collo-
quium 244 on Experimental Analysis of Nonlinear Problems in Solid Mechanics, Poznan,
Poland 1988.
B ETTEN , J. (1990). Recent Advances in Mathematical Modelling of Materials Behavior,
in E. RODIN and X. AVULA (eds), Mathematical and Computer Modelling, Pergamon
Press, Oxford, pp. 37–51. Presented as a plenary lecture at the seventh Int. Conf. on
Mathem. Modelling in Chicago, Illinois, USA, August 1989.
B ETTEN , J. (1991a). Applications of tensor functions in creep mechanics, in M. Z Y-
CZKOWSKI (ed.), Creep in Structures, Springer-Verlag, Berlin/Heidelberg/New York,
pp. 3–22. Presented as a ”general lecture” on the IUTAM-Symposium in Cracow/Poland,
Sept. 1990.
B ETTEN , J. (1991b). Recent advances in applications of tensor functions in solid mechanics,
Adv. Mechanics (Uspechi Mechaniki) 14: 79–109.
B ETTEN , J. (1992). Applications of tensor functions in continuum damage mechanics, Int.
J. Damage Mechanics 1: 47–59.
B ETTEN , J. (1998). Anwendungen von Tensorfunktionen in der Kontinuumsmechanik
anisotroper Materialien, ZAMM 78: 507–521. Hauptvortrag auf der 75. GAMM-Tagung
in Regensburg, 24-27, März 1997.
B ETTEN , J. (2001a). Kontinuumsmechanik, 2. Aufl., Springer-Verlag, Berlin, Heidelberg,
New York.
B ETTEN , J. (2001b). Mathematical modelling of materials behaviour under creep conditions,
Appl. Mech. Rev. (AMR) 54(2): 107–132.
B ETTEN , J. (2001c). Recent Advances in Applications of Tensor Functions in Continuum
Mechanics, in E. G IESSEN V. D . and T. W U (eds), Advances in Applied Mechanics,
Vol. 37, pp. 277–363.
B ETTEN , J. (2003a). Applications of Tensor Functions in Damage Mechanics, in
J. S KRZYPEK and A. G ANCZARSKI (eds), Anisotropic Behaviour of Damaged Mate-
rials, Springer-Verlag, Berlin/Heidelberg/New York.
B ETTEN , J. (2003b). Finite Elemente für Ingenieure 1, zweite Aufl., Springer-Verlag, Berlin
/ Heidelberg / New York.
B ETTEN , J. (2004). Finite Elemente für Ingenieure 2, zweite Aufl., Springer-Verlag, Berlin /
Heidelberg / New York.
B ETTEN , J. (2007). Creep Curve, Maplesoft Appliction Center, Category Engineering Me-
chanics . Waterloo, Ontario, Canada.
B ETTEN , J. (2009). Zum Eigenwertproblem für Tensoren vierter Stufe, ZAMM . In Vorbere-
itung.
B ETTEN , J., B ORRMANN , M. and B UTTERS , T. (1989). Materialgleichungen zur
Beschreibung des primären Kriechverhaltens innendruckbeanspruchter Zylinderschalen
aus isotropem Werkstoff, Ing. Archiv (Arch. Appl. Mech.) 60: 99–109.
B ETTEN , J., B REITBACH , G. and WANIEWSKI , M. (1990). Multiaxial Anisotropic Creep
Behaviour of Rolled Sheet-Metals, Z. Angew. Math. Mech. (ZAMM) 70: 371–379.
B ETTEN , J. and B UTTERS , T. (1990). Rotationssymmetrisches Kriechbeulen dünnwandiger
Kreiszylinderschalen im primären Kriechbereich, Forschung. Ingenieur. 56: 84–89.
B ETTEN , J., E L -M AGD , E., M EYDANLI , S. and PALMEN , P. (1995). Anisotropic damage
growth under multi-axial stress (theory and experiments), Arch. Appl. Mech. 65: 110–120
and 121–132.
B ETTEN , J. and H ELISCH , W. (1995). Integrity basis for a fourth-rank tensor, in D. PARKER
and A. E NGLAND (eds), IUTAM Symposium on Anisotropy, Inhomogeneity and Nonlin-
earity in Solid Mechanics, Kluwer Academic Publishers, Netherlands, pp. 37–42.
References 349
B ROWN , S., K IM , K. and A NAND , L. (1989). An Internal Variable Constitutive Model for
Hot-Working of Metals, Intern. J. of Plasticity 5: 95–130.
B RUELLER , O. (1991). Some new Aspects of the Nonlinear Characterization of Creep and
Stress Relaxation of Polymers, in M. Z YCZKOWSKI (ed.), Creep in Structures, Springer-
Verlag, Berlin, pp. 55–62.
B UCHTER , H. (1967). Apparate und Armaturen der Chemischen Hochdrucktechnik,
Springer-Verlag, Berlin.
C HABOCHE , J. (1974). Une Loi Differentielle d’Endommagement de Fatigue avec Cumula-
tion non Lineaire, Revue Francaise de Mecanique pp. 50–51. English trans In Annales
de l’IBTP 39.
C HABOCHE , J. (1977). Viscoplastic Constitutive Equations for the Description of Cyclic and
Anisotropic Behaviour of Metals, Bullet. De L’Academie Polonaise des Sciences 25: 33–
43.
C HABOCHE , J. (1981). Continuous damage mechanics: A tool to describe phenomena before
crack initiation, Nucl Eng Des 64: 233–247.
C HABOCHE , J. (1984). Anisotropic creep damage in the framework of continuum damage
mechanics, Nucl. Eng. Des. 79: 304–319.
C HABOCHE , J. (1988). Continuum damage mechanics - Part I: General concepts, Part II:
Damage growth, crack initiation, and crack growth, J. Appl. Mech. 55: 59–71.
C HABOCHE , J. (1993). Development of continuum damage mechanics for elastic solids
sustaining anisotropic and unilateral damage, Int J Damage Mech 2: 311–329.
C HABOCHE , J. (1999). Creep and Damage in Materials and Structures, Springer-Verlag,
Wien/New York, chapter Thermodynamically founded CDM Models for Creep and other
Conditions, pp. 209–283. CISM-Course 399.
C HABOCHE , J., L ESNE , P. and M OIRE , J. (1995). Continuum damage mechanics,
anisotropy and damage deactivation for brittle materials like concrete and ceramic com-
posites, Int J Damage Mech 4: 5–22.
C HAN , K., B ODNER , S., F OSSUM , A. and M UNSON , D. (1997). A Damage Mechanics
Treatment of Creep Failure in Rock Salt, Int. J. of Damage Mech. 6: 121–152.
C HEN , X. and C HOW, C. (1995). On damage strain energy release rate Y, Int J Damage
Mech 4: 251–263.
C HENG , C., K ARIM , A., L ANGDORN , T. and D ORN , J. (1968). Trans Met. Soc. AIME
242: 584.
C HOW, C. and L U , T. (1992). An analytical and experimental study of mixed-mode ductile
fracture under nonproportional loading, Int J Damage mech 1: 191–236.
C HOW, C. and WANG , J. (1987). An anisotropic theory of elasticity for continuum damage
mechanics, Int. J. Fracture 33: 3–16.
C HOW, C. and WANG , J. (1988). Ductile fracture characterization with an anisotropic con-
tinuum damage theory, Eng. Fracture Mech. 30: 547–563.
C HRISTENSEN , R. (1982). Theory of Viscoelasticity, second edn, Academic Press, New
York/ London/ Toronto.
C HRZANOWSKI , M. (1973). The Description of Metallic Creep in the Light of Damage
Hypothesis and Strain Hardening, Diss. Hab., Politechnika Krakowska, Krakow .
C HRZANOWSKI , M. (1976). Use of the damage concept in describing creep-fatigue interac-
tion under prescribed stress, Int. J. Mech. Sci. 18: 69–73.
C OCKS , A. and A SHBY, M. (1982). On creep fracture by void growth, Prog. Materials
Science 27: 189–244.
C OCKS , A. and L ECKIE , F. (1987). Creep Constitutive Equations for Damaged Materials,
in T. W U and J. H UTCHINSON (eds), Advances in Applied Mechanics, Vol. 25, pp. 239–
294.
C OCKS , A. and P ONTER , A. (1985). Constitutive equations for the plastic deformation of
solids, Leicester Univ. Eng. Dep. Rep. 85: 1–2.
References 351
C OFFIN , L. (1954). A study of the effects of cyclic thermal stresses in a ductile metal, Trans
ASME 76: 931.
C RISTESCU , N. and S ULICIU , I. (1982). Viscoplasticity, Martinus Nijhoff Publishers, The
Hague/ Boston/ London.
DAVIS , E. (1960). Relaxation of a cylinder on a rigid shaft, Journal of Applied Mechanics
27(3): 41–44.
DAVISON , L. and K IPP, M. (1978). Calculation of spall damage accumulation in ductile met-
als, in K. K AWATA and S HIRATORI (eds), Proc IUTAM Symp High Velocity Deformation
of Solids, Tokyo, Japan 1977, Springer-Verlag, New York, pp. 163–175.
DAVISON , L., S TEVENS , L. and K IPP, M. (1977). Theory of spall damage accumulation in
ductile metals, J Mech Phys Solids 25: 11–28.
D OETSCH , G. (1971). Handbuch der Laplace Transformation 1-3, Birkhäuser Verlag, Basel.
D RAGON , A. (1985). Plasticity and ductile fracture damage, Eng Fracture Mech 21: 875–
892.
D RUCKER , D. (1959). A Definition of Stable Inelastic Material, J. Appl. Mech. 26: 101–106.
D UBEY, R. and H ILLER , M. (1972). Yield Criteria and the Bauschinger-Effect for a Plastic
Solid, Journal of Basic Engineering, Transactions of the ASME pp. 228–230.
D UFAILLY, J. and L EMAITRE , J. (1995). Modeling very low cycle fatigue, Int. J. Damage
Mech. 4: 153–170.
D ÜNGER , U. (2005). Untersuchungen zum dynamischen Verhalten von offenzelligen fluid-
gefüllten Schaumstoffen, Dissertation, Universität Karlsruhe (TH).
D UNNE , F. and H AYHURST, D. (1994). Efficient cycle jumping techniques for the modelling
of materials and structures under cyclic mechanical and thermal loadings, Eur J Mech
A/Solids 13: 639–660.
D UNNE , F., OTHMAN , A., H ALL , F. and H AYHURST, D. (1990). Representation of Uni-
Axial Creep Curves Using continuum Damage Mechanics, Int. J. Mech. Sci. 32: 945–957.
DYSON , B. (1976). Constraints on diffusional cavity growth rates, Metal Science 10: 349–
353.
E BERT, F. (1980). Strömung nicht-newtonscher Medien, Vieweg-Verlag, Braunschweig /
Wiesbaden.
E DWARD , G. and A SHBY, M. (1979). Intergranular fracture during power-law creep, Acta
Metall 27: 1505–1518.
E INSTEIN , A. (1916). Die Grundlagen der allgemeinen Relativitätstheorie, Annalen der
Physik, 4. Folge 49: 769–822.
E ISENBERG , M. and Y EN , C. (1981). A Theory of Multiaxial Anisotropic Viscoplasticity,
J. Appl. Mech. 48: 276–284.
E NGELN -M ÜLLGES , G. and R EUTER , F. (1993). Numerik-Algorithmen mit Fortan 77-
Programmen, Wissenschaftsverlag, Mannheim. 7. völlig neu bearbeitete und erweiterte
Auflage.
E VANS , H. (1984). Mechanisms of Creep Rupture, Elsevier, London.
FAIRBAIRN , J. and M ACKIE , W. (1972). The creep of thick-walled tubes subjected to in-
ternal pressure, IUTAM Symposium on Creep in Structures, Gothenburg 1970, Springer,
Berlin, pp. 189–202.
F ETT, T., K ELLER , K. and M UNZ , D. (1988). An analysis of the creep of hot-pressed silicon
nitride in bending, J. of Materials Science 23: 467–474.
F INNIE , I. (1966). Method of predicting creep tension and compression from bending tests,
J. of the American Ceramic Society 49: 218–220.
F ITZGERALD , J. (1980). A tensorial Hencky measure of strain and strain rate for finite
deformations, J. Appl. Phys. 51: 5111–5115.
F OUX , A. (1964). An experimental Investigation of the Poynting Effect, in M. R EINER
and D. A BIR (eds), Second-order Effects in Elasticity, Plasticity and Fluid Dynamics,
Pergamon Press, Oxford/London/New York/Paris, pp. 228–251.
352 References
F R ÈRES , P. (1996). Enstehung und Wachstum von Mikrorissen in gekerbten Stäben unter
Hochtemperatur-Kriechbeanspruchung, Dissertation RWTH-Aachen.
G ANCZARSKI , A. and S KRZYPEK , J. (1997). Optimal design of rotationally symmetric
disks in thermo-damage coupling conditions, Tech Mech 17: 365–378.
G ANCZARSKI , A. and S KRZYPEK , P. (1995). Concept of thermo-damage coupling in contin-
uum damage mechanics, in R. H ETNARSKI and N. N ODA (eds), First Int Symp Thermal
Stresses 1995, Hamamatsu, Japan, Act City, June 5-7, 1995, pp. 83–86.
G IESEKUS , H. (1994). Phänomenologische Rheologie, Springer-Verlag, Berlin/Heidelberg.
G ITTUS , J. (1978). Irradiation Effects in Crystalline Solids, Applied Science Publ., London.
G OEL , R. (1975). On the creep rupture of a tube and a spere, J. Appl. Mech. Trans. ASME
43: 625–629.
G OODS , S. and N IX , W. (1978). The kinetics of cavity growth and creep fracture in silver
containing implanted grain boundary cavities, Acta Metallurgica 26: 739–752.
G OREV, B., RUBANOV, V. and S OSNIN , O. (1978). in G. P ISARENKO (ed.), Strength of
materials and Structural Members under Multiaxial Loading, Naukova Dumka, Kiev,
pp. 223–231.
G OREV, B., RUBANOV, V. and S OSNIN , O. (1979a). J. Appl. Mech. and Techn. Phys. 4: 121–
128.
G OREV, B., RUBANOV, V. and S OSNIN , O. (1979b). Strength of Materials 7: 62–67.
G RABACKI , J. (1994). Constitutive equations for some damaged materials, Eur J Mech
A/Solids 13: 51–71.
G RADY, D. (1982). Local inertial effects in dynamic fragmentation, J Mech Phys Solids
53: 322–325.
G RATHWOHL , G. (1984). Regimes of creep and slow crack growth in high-temperature
rupture of hot-pressed silicon nitride, Deformation of Ceramics II, Plenum Publishing
Corporation, pp. 573–586.
G ROSS , D. and S EELIG , T. (2001). Bruchmechanik, 3 edn, Springer-Verlag, Berlin / Heidel-
berg / New York.
H AN , C., K IM , K., S ISKOVIIC , N. and H UANG , C. (1975). An appraisal of rheological
models as applied to polymer melt flow, Rheol. Acta. 14: 533–549.
H AUPT, P. (2000). Continuum Mechanics and Theory of Materials, Springer-Verlag,
Berlin/Heidelberg/New York.
H AYAKAWA , K. and M URAKAMI , S. (1997). Thermodynamical Modeling of Elastic-Plastic
Damage and Experimental Validation of Damage Potential, Int. J. of Damage Mech.
6: 381–390.
H AYAKAWA , K. and M URAKAMI , S. (1998). Damage Mechanics in Engineering Materials,
Elsevier, chapter Space of damage conjugate force and damage potential of elastic-plastic
damage materials, pp. 27–44.
H AYHURST, D. (1972). Creep rupture under multiaxial states of stress, J. Mech. Phys. Solids
20: 381–390.
H AYHURST, D., D IMMER , P. and M ORRISON C.J. (1984). Development of continuum
damage in the creep rupture of notched bars, Phil Trans R Soc London A 311: 103.
H AYHURST, D. and L ECKIE , F. (1973). The effect of creep constitutive and damage rela-
tionships upon rupture time of solid circular torsion bar, Mech Phys Solids 21: 431–446.
H AYHURST, D., T RAMPCZYNSKI , W. and L ECKIE , F. (1980). Creep rupture and nonpro-
portional loading, Acta Metall 28: 1171–1183.
H AYMAN , B. (1980). Creep buckling - a general view of the phenomena, pp. 289–307. 3.
IUTAM-Symposium.
H AYMAN , B. (1981). Creep Buckling - A General View of The Phenomena, in A. P ONTER
and D. H AYHURST (eds), Creep in Structures, Springer-Verlag, Berlin, pp. 289–307.
H ECKER , F. (1967). Die Wirkung des Bauschinger-Effekts bei großen Torsions-
Formänderungen, Dissertation, Techn. Hochschule Hannover .
References 353
R IMROTT, F., M ILLS , E. and M ARIN , J. (1960). Prediction of creep failure time for pressure
vessels, Journal of Applied Mechanics 27(6): 303–308.
R IVLIN , R. (1955). Further remarks on the stress-deformation relations for isotropic materi-
als, J. Rat. Mech. Anal. 4: 681–702.
R IVLIN , R. (1970). Non-Linear Continuum Theories in Mechanics and Physics and their Ap-
plications, Centro Internazionale Mathematico Estivo (C.I.M.E.), Edizione Cremonense,
Roma.
R IVLIN , R. and E RICKSEN , J. (1955). Stress-deformation relations for isotropic materials,
J. Rational Mech. Anal. 4: 323–425.
RUBANOV, V. (1987). Experimental Foundation of the Constitutive Equations of Creep for
Materials with Different Behaviour in Tension and Compression, Ph. D. Thesis, Institute
of Hydrodynamics, Novosibirsk.
S AANOUNI , K., F ORSTER , C. and B EN H ATIRA , F. (1994). On the anelastic flow with
damage, Int J Damage Mech 3: 140–169.
S AWCZUK , A. and A NISIMOWICZ , M. (1981). Tensor Functions Approach to Creep Laws
after Prestrain, in A. P ONTER and D. H AYHURST (eds), Creep in Structures, Springer-
Verlag, Berlin / Heidelberg / New York, pp. 220–232.
S AYIR , M. (1970). Zur Fließbedingung der Plastizitätstheorie, Ing.-Archiv 39: 414–432.
S CHERER , G. (1986). Relaxation in Glass and Composites, John Wiley & Sohn, New York/
... / Singapore.
S CHOWALTER , W. (1978). Mechanics of Non-Newtonian Fluids, Pergamon Press, Oxford/
... / Frankfurt.
S EDOV, L. (1966). Foundations of the Non-Linear Mechnics of Continua, Pergamon Press,
Oxford.
S ETH , B. (1972). Creep transition in cylinders, International Centre for Mechanical Sciences
Courses and Lectures No. 149, Udine 1972, Springer, Wien.
S HAMMAS , M. (1988). Metallographic Methods for Predicting the Remament Life of Ferritic
Coarse-Grained Weld Heat Affected Zones Subject to Creep Cavitation, Int. Conf. on Life
Assessment . VGB, KEMA, EPRI, Essen, Arnheim, Palo Alto.
S HIN , C. (1990). Inelastisches Verhalten anisotroper Werkstoffe, Dissertation, RWTH
Aachen.
S IDOROFF , F. (1981). Description of anisotropic damage application to elasticity, IUTAM
Colloquium on Physical Nonlinearities in Structural Analysis, Springer-Verlag, Berlin,
pp. 237–244.
S KELTON , W., S ALIM , A. and PATTON , R. (1977). The creep of thick-walled 2 1/2 %
NiCrMo cylinders under internal pressure at 350◦ C: Development of a testing machine
and prliminary results., Proc. Inst. Mech. Eng. 192: 73–98.
S KOCZEN , B. (1996). Generalization of the Coffin equations with respect to the effect of
large mean plastic strain, J Eng Mat Tech, ASME pp. 387–393.
S KRZYPEK , J. (1999). Creep and Damage in Materials and Structures, Springer-Verlag,
Wien/New York, chapter Material Damage Models for Creep Failure Analysis and De-
sign of Structures, pp. 97–166.
S KRZYPEK , J. (1993). Plasticity and Creep, CRC-Press, Boca Raton / Ann Arbor / London
/ Tokyo.
S KRZYPEK , J. and G ANCZARSKI , A. (1998). Modeling of damage effect on heat transfer in
time-dependent non-homogeneous solids, J Thermal Stresses 21: 205–231.
S KRZYPEK , J. and G ANCZARSKI , A. (1999). Modeling of Material Damage and Failure of
Structures-Theory and Applications, Springer-Verlag, Berlin, Heidelberg, New York.
S KRZYPEK , J. and G ANCZARSKI , A. (2003). Anisotropic Behaviour of Damaged Materials,
(Eds.), Springer-Verlag, Berlin, Heidelberg, New York.
S OBOTKA , Z. (1984). Rheology of Materials and Engineering Structures, Vydala Academia
vêd, Praha.
S ÖDERQUIST, B. (1968). Acta Polytech. Scand., Series (f) 53: 1–36.
References 359
S OKOLNIKOFF , I. (1964). Tensor Analysis, Theory and Applications to the Geometry and
Mechanics of Continua, John Wiley, New York/London/Sydney. Second Edition.
S PENCER , A. (1971). Theory of Invariants, in A. E RINGEN (ed.), Continuum Physics, Aca-
demic Press, New York and London, pp. 239–353.
S PENCER , A. (1987). Polynomial invariants and tensor functions, in J. B OEHLER (ed.),
Applications of Tensor Functions in Solid Mechanics, Springer-Verlag, Wien, New York,
pp. 141–201.
S TEVENSON , J. (1972). Elongational Flow of Polymer Melts, A. I. Ch. E. Journal 18: 540–
547.
S TIGH , U. (1985). Material Damage and Constitutive Properties, chalmers University of
Technology, Göteborg, Sweden.
S WIFT, H. (1947). Length Changes in Metals under Torsional Overstrain, Engineering
163: 253–257.
S ZAB Ó , I. (1964). Höhere Technische Mechanik, 4. aufl. edn, Springer, Berlin.
TAIRA , S., KOTERAZAWA , R. and O HTANI , R. (1965). Creep of thick-walled cylinders
under internal pressure at elevated temperature, in T. N ISHIHARA (ed.), Proc. 8th Japan
Congr. testing materials, Soc. Mat. Sci., Kyoto, pp. 53–60.
TALTY, R. and D IRKS , R. (1978). Determination of tensile and conpressive creep behaviour
of ceramic materials from bend tests, J. of Materials Science 13: 580–586.
T EOH , S., C HERRY, B. and K AUSCH , H. (1992). Creep Rupture Modelling of Poymers, Int.
J. of Damage Mech. 1: 245–256.
T ETELMAN , A. and M C E VILY, A. (1970). Fracture of Structural Materials, John Wiley.
T IMOSHENKO , S. (1934). Theory of Elasticity, Mc Graw-Hill Book Company, London.
T RAMPCZYNSKI , W., H AUHURST, D. and L ECKIE , F. (1981). Creep rupture of copper and
aluminium under non-proportional loading, J. Mech. Phys. Solids 29: 353–374.
T ROOST, A., B ETTEN , J. and E L -M AGD , E. (1973). Einschnürvorgang eines Zugstabes
unter konstanter Last bei Raumtemperatur, Materialprüfung 15: 113–116.
T RUESDELL , C. (1964). Second-order Effects in the Mechanics of Materials, in M. R EINER
and D. A BIR (eds), Second-order Effects in Elasticity, Plasticity and Fluid Dynamics,
Pergamon Press, Oxford/London/New York/Paris, pp. 1–47.
T RUESDELL , C. (1977). A First Course in Rational Continuum Mechanics, Vol. 1: General
Concepts, Academic Press, New York.
T RUESDELL , C. and N OLL , W. (1965). The non-linear field theories of mechanics. In:
Handbuch der Physik, Vol III/3 (ed Flügge S), Berlin, Heidelberg, New York: Springer
Verlag.
T RUESDELL , C. and T OUPIN , R. (1960). The classical field theories, in S. F LGGE (ed.),
Handbuch der Physik, Vol. III/1, Springer, Berlin, pp. 226–793.
T SCHOEGL , N. (1989). The Phenomenological Theory of Linear Viscoelastic Behavior,
Springer-Verlag, Berlin/ ... / Tokyo.
T URNER , L. (1909). The stresses in a thick hollow cylinder subjected to internal pressure,
Trans. Camb. Phil. Soc. 21: 377–396.
T VERGAARD , V. (1984). Constitutive Relations for Creep in Polycrystals with Grain Bound-
ary Cavitation, Acta Metall 32: 1977–1990.
T VERGAARD , V. (1988). Material failure by void coalescence in localized shear bands,
DCAMM Report , Tech Univ of Denmark, Lyngby 221: 1–26.
T VERGAARD , V. (1989). Material Failure by Void Growth to Coalescence, in J. H UTCHIN -
SON and T. W U (eds), Advances in Applied Mechanics, Vol. 27, pp. 83–151.
VOCE , E. (1955). A practical strain-Hardening function, Metallurgia 51: 219–226.
VOYIADJIS , G. and K ATTAN , P. (1990). A coupled theory of damage mechanics and finite
strain elasto-plasticity - II: Damage and finite strain plasticity, Int. J. Eng. Sci. 28: 505–
524.
VOYIADJIS , G. and K ATTAN , P. (1992). A plasticity-damage theory for large deformation
of solids, Part I: Theoretical formulation, Int J Eng Sci 30: 1089–1108.
360 References
√
t-law, 218, 222-224, 229 C
L2 -error norm, 224 C-S-D effect, 123
canonical form, 82, 113–114, 136–137
A capillar flows, 193
A BEL integral equation, 315-316 C AUCHY’s equation of motion, 47, 177
accelerating creep, 51 C AUCHY’s stress tensor, 44–48, 80, 138,
activation energy for creep, 219 149, 155, 261
activation energy for self-diffusion, 219 C AUCHY’s tetrahedron, 81
actual net-stress tensor, 135, 150 cavitation, 255
alternating symbol, 11 cavity growth, 256
anisotropic, 3, 113, 115 characteristic equation, 14–15, 45, 132
anisotropic damage, 138, 156-157 characteristic polynomial, 127–130
anisotropic damage growth, 81 Chi-square distribution, 204–205
anisotropic damage state, 81, 135 C HRISTOFFEL symbols, 29–30
anisotropic damage tensors, 3, 77, 126 C HRISTOFFEL symbols of the first kind, 24,
anisotropic hardening, 262 27
anisotropic materials, 109 C HRISTOFFEL symbols of the second kind,
anisotropic primary creep, 2, 61 24, 27
anisotropic viscoplastic solids, 248 circumferential stresses, 95
anisotropy tensor, 82 classical flow rule, 111
anomalous flows, 194 classical normality rule, 109
approximant, 331 classical strain tensor, 38
A RRHENIUS function, 219 climbing of dislocations, 218
asymmetric effective stress tensor, 156 coaxial, 156
austenite, 250 collocation method, 289
austenitic steel, 52–61 collocation point, 289
compatibility equations, 39
B complementary energy, 157
BAUSCHINGER effect, 68, 97 complementary error function, 331
best approximation, 266, 331–332 complex compliance, 234, 236
B INGHAM model, 246, 248 complex modulus, 234
bivector, 81, 140–143 complex parameters, 234, 236
biaxial specimen, 262 complex shear modulus, 234
body-fixed, 86 complex shear viscosity, 235
B OLTZMANN’s axiom, 44 complex viscosity, 234, 237
B OLTZMANN’s superposition principle, compliance, 205
189, 197 compressible fluids, 178
brain tissue 231 computer algebra systems, 336
B URGERS model, 229–236, condition of form invariance, 119
bulk modulus, 173, 176 conditions of compatibility, 117
bulk viscosity, 173–174 conjugate variables, 48
362 Index
constitutive equations, 31, 48–49, 119, 139, creep potential hypothesis, 2, 61, 109,
239, 253–256 113–115
continuous transition, 292 creep rate, 52, 61, 63, 78–79, 98, 165,
Continuum Damage Mechanics, 3 282–283
Continuum Mechanics, 31 creep relation, 196
contravariance, 17 creep response, 198
contravariant base, 22–23 creep spectra, 213, 215
contravariant base vectors, 19 creep strain, 218
contravariant components, 17, 22 creep tensor, 196
contravariant components of a vector, 36 creep velocity potential, 2
contravariant metric tensors, 20 creep-failure, 108
contravariant tensor components, 29 creep-strength-differential effect, 122–123
convection rate of change, 34 cubic splines, 267
convective rate, 178 curve fitting, 266
convective stress rate, 182 curvlinear coordinates, 16
convexity, 249 cylindrical coordinates, 29
convolution, 199–200, 303, 315
convolution integral, 303 D
convolution theorem, 199–200, 304–307, D ’A LEMBERT ’s principle, 46
309, 312, 315 damage effective stress, 139, 155, 157
convolution type, 314 damage effective tensor, 156, 158
copolymer, 218 damage equivalence hypothesis, 158
C OSSERAT continuum, 41, 44 damage equivalence principles, 157
C OUETTE-flow, 185 damage isotropy principle, 158
couple stresses, 47 damage mechanics, 3–4
damage state, 254
couple-stress vector, 41
damage tensor, 3, 80, 82, 115, 126, 139, 144
covariance, 17
damage variables, 156
covariant base vectors, 19, 22
damaged continuum, 141, 143, 149
covariant basis, 19, 23
damaged materials, 115
covariant components, 17, 22
damped free vibration, 233
covariant components of a vector, 36 damping factor, 233, 293
covariant derivatives, 25 damping rule, 300
covariant metric tensors, 20 deflection curve, 311, 313
covariant tensor components, 29 deformation gradient, 182, 202
creep acceleration, 282–284 del operator, 23
creep behavior, 237 deviator, 14
creep behavior of concrete, 215 deviatoric, 118, 123
creep buckling, 2, 61 die swell, 194
creep condition, 63, 121, 125, 253–254 differentiation of the transform, 301
creep criterion, 119 diffusion coefficient, 219
creep curve, 50–54, 58, 60, 165, 216– diffusion controlled process, 218–219, 330
218,224, 279–284 diffusional creep, 218
creep curves for concrete, 217–218 diffusion equation, 330
creep damage, 3, 77 diffusion way, 222
creep function, 196–199, 201, 203–204, D IRAC function, 197, 288, 290, 294, 308,
206, 209, 211, 213, 215, 223, 239, 309, 310
315 discrete relaxation spectrum, 227
creep integral, 198 discrete retardation spectrum, 205–206
creep mechanics, 1, 51, 330 dislocation creep, 218–219, 256, 262
creep parameters, 67, 282 displacement vector, 34
creep potential, 2, 53, 62–63, 65, 70–71, 80, dissipation power, 174
109–110, 116 dissipative energy, 233
Index 363
relaxation function, 197–199, 201, 225–227, standard solid model, 204–205, 224, 239
235, 240–243, 316 steady creep, 51
relaxation integral, 198 S TOKES condition, 174, 178
relaxation modulus, 227 S TOKES fluid, 174
relaxation spectra, 225, 227, 229 storage compliance, 234
relaxation time, 189, 225–226, 237 storage modulus, 234
representations for tensor functions, 158 strain equivalence hypothesis, 157, 275, 372
residual stresses, 97 strain history, 189
resonance, 234 strain-hardening-theory, 52, 54, 60
retardation time, 203–205, 237 strain-to-rupture, 80
rheological models, 195 stress deviator, 162, 174
right C AUCHY-G REEN tensor, 36, 89, 192, stress relaxation, 197–199, 223, 229
202 stress tensor, 2, 40, 42
right stretch tensor, 89 stress vector, 40–41
rigid rotation, 35 structural relaxation, 229
rigid-body motion, 36 substantial derivative, 33
R IMROTT’s solution, 100 substitution rule, 177
ROMBERG’s integration method, 103 substitution tensor, 10
rule of lowering and raising the indices, 21, sufficient and necessary conditions of
23 compatibility, 118
summation convention, 10
S superposition principle, 197
second P IOLA -K IRCHHOFF tensor, 47, 48, S YLVESTER theorem, 160
185 symbolic notation, 9
second law of thermodynamics, 175
second-order effect, 70–72, 75–76, T
115–116, 249–250 tautochrone, 323
second-rank tensor, 13, 139 tensor analysis, 23
secondary creep, 263 tensor function theory, 2, 109
secondary stage, 165 tensor functions, 49
shear effect, 174 tensor generators, 81, 112–113, 119,
shear flow, 189 134–136
shear modulus, 197, 203 tensor of continuity, 126, 142–143
shear viscosity, 172, 175, 189, 203, 248 tensor-valued functional, 190, 193
shearing flow, 172 tensor-valued functions, 80
shift rule, 299 tensorial constitutive equations, 159
similarity rule, 299 tensorial generalization, 79
simplified representations, 135 tensorial interpolation method, 165, 252
simplified theory, 260–261 tensorial nature, 156
simultaneous invariants, 119, 125 tensorial nonlinear constitutive equation, 61
small-strain theory, 38 tensorial nonlinear constitutive equations
solid part, 247 involving the strain hardening hypothesis,
spatial coordinates, 33, 86 2
spatial covariant metric tensor, 90 tensorial nonlinearities, 2, 61, 252
spatial deformation gradient, 34, 87 tensors of continuity, 80
spatial description, 33, 37, 186 tertiary creep, 77, 80, 263
spatial displacement gradient, 34 theorem of conjugate shear stresses, 44
spherical coordinates, 30 theory of viscoplasticity, 245
spherical tensor, 14, 148 thermodynamic pressure, 174
spring-dashpot models, 202 thin-walled shells, 61
square wave, 286 thin-walled tube, 74
stabilized glass, 230 time transform, 330
standard form, 114 time-dependence, 254
Index 367