pretiosus.io

Laplace Transform

Topic

Tags

Laplace

Intro

The Laplace\mathcal{L}aplace transform is able to convert a real-valued function into a function with a complex variable ss. Such a real-valued function can for example be an input x(t)x(t). The complex variable ss can be written by s=σ+iωs = \sigma + i\omega. Which essentially stands for the complex frequency, it can also be called the s-domain.

The Laplace\mathcal{L}aplace transform is often useful in parts of control engineering where computations become more easier in the s-domain. Namely, the Laplace\mathcal{L}aplace transform is able to turn an ordinary differential equation into an algebraic equation. Secondly, it is convenient to transform a convolution into a multiplication. Both are shown in the article about transfer functions.

The official way to compute a Laplace\mathcal{L}aplace transform is by the use of the following integral;

L{f(t)}=0f(t)estdt\begin{equation} \mathcal{L}\{f(t)\} = \int^{\infty}_{0}f(t)e^{-st}dt \end{equation}

However, for using the Laplace\mathcal{L}aplace transform it often suffices to use the lookup table below. The reason for this is that the computation of the integral takes in general quite some time, which results in the lookup table being much faster. A more in-depth explanation of the use of this integral is shown in Laplace Integral. For now, we will simply use the lookup table. In this table, the most encountered functions, not all, are shown with their time-domain function and the Laplace\mathcal{L}aplace transform of it.

Time Domain f(t)f(t)Frequency Domain L{f(t)}\mathcal{L}\{f(t)\}
111s\frac{1}{s}
δ(t)\delta(t)11
δ(tτ)\delta(t-\tau)eτse^{-\tau s}
tnt^nn!sn+1\frac{n!}{s^{n+1}}
tneαtt^ne^{-\alpha t}n!(s+α)n+1\frac{n!}{(s+\alpha)^{n+1}}
eαte^{\alpha t}1sα\frac{1}{s-\alpha}
sin(ωt)sin(\omega t)ωs2+ω2\frac{\omega}{s^2 + \omega^2}
eαtsin(ωt)e^{\alpha t}sin(\omega t)ω(sα)2+ω2\frac{\omega}{(s-\alpha)^2 + \omega^2}
cos(ωt)cos(\omega t)ss2+ω2\frac{s}{s^2 + \omega^2}
eαtcos(ωt)e^{\alpha t}cos(\omega t)sα(sα)2+ω2\frac{s-\alpha}{(s-\alpha)^2 + \omega^2}
............

Examples Lookup Table

Let's say we want to apply the transform to the following function in time domain;

f(t)=e2tF(s)=1s+2\begin{equation} \begin{aligned} f(t) &= e^{-2t}\\ F(s) &= \frac{1}{s+2} \end{aligned} \end{equation}

A combination of different components from the table is also possible. Let's take the same exponent as in the previous example and multiply it with a sinusoid.

f(t)=e2tsin(5t)F(s)=1s+25s2+52=5(s+2)(s2+52)\begin{equation} \begin{aligned} f(t) &= e^{-2t}\cdot sin(5t)\\ F(s) &= \frac{1}{s+2} \cdot \frac{5}{s^2 + 5^2} \\ &= \frac{5}{(s+2)(s^2 + 5^2)} \end{aligned} \end{equation}

In this article, we introduced the Laplace\mathcal{L}aplace transform, explained why it is useful, and showed how to compute it via a lookup table. As there can be noticed, by using the lookup table the transform can be executed rather quickly. In further articles, we will elaborate on the inverse Laplace\mathcal{L}aplace transform in order to go from the s-domain back to the time-domain.