Impedanz.mw
Description of Mechanical Systems by the Use of Quadripole Parameters
Harald Kammerer
The author expects that this worksheet will only be used for teaching and educational purposes and not for commercial profit without contacting the author for a licensed agreement.
The following numerical values are only academic examples and have no reference to real structures.
Motivation
Let's consider a mechanical device defined with an input gate and an output gate. At the input gate there are two values of the force
and the velocity
. At the output gate there are the two values of the force
and the velocity
. So we have all in all two gates and four items. This system can be described in the equivalent manner as an electrical quadripole. So we call this system a mechanical quadripole. Such a quadripole is shown in Figure 1.
For example in [2] there is some more detailed description of this method. Here we will give a first introduction in this theory.
We can consider it as a black box. It is not important of what the device consists. It is only important how it works. In this worksheet we will see how we can use this method to work with some special dynamical systems. But first we have to give some conditions for the mechanical systems. Perhaps not all of the following conditions are necessary, but they will help to understand this idea.
> |
with(linalg):with(plots): |
We define a helpful procedure first. This procedure is used in the following to convert complex values into the standard form
.
> |
complexextension:=proc(a) |
> |
local z,n,zr,nr,zi,ni,zbr,zbi,nb,b; |
> |
b:=simplify(zbr/nb)+simplify(zbi/nb)*I; |
Conditions
At first we assume that all motions are harmonic vibrations. All other kind of motions must be analyzed by use of a Fourier transformation. Further, the devices should be a straight line. There is only one input gate and one output gate. That means for example that no rocking of the foundation is possible. We consider devices with linearly dependantence between the force and the displacement, velocity or the acceleration is possible. For example no Duffing device is considered.
All the following relations are defined by use of the angular frequency
. For practical use it is usual to consider the frequency
. The relation between
and
is
> |
|
Description of the motion
Every motion, especially every harmonic vibration, can be described by the displacement, the velocity or the acceleration. Of course there are some constants of integration, but in our consideration they are not important.
We describe here the motion by the velocity, as shown in Figure 1. The velocity should be given as a harmonic vibration in complex notation.
> |
|
The displacement is can be integrated from the velocity
> |
|
And the acceleration is derived from the velocity
> |
|
Here we express the displacement and the acceleration by the velocity. This allows us to generate a formalism to describe any device. For example the displacement
and acceleration
are expressed by the velocity
> |
|
> |
|
Impedance
We have assumed that the forces are linearly dependant on the displacement, velocity or the acceleration. Additionally we assumed that only harmonic vibrations are considered. This means that we can write for the relation between force and velocity
or
R is called the impedance of a device or a structure.
Impedances of Standard Devices
Let's consider some typical devices and their impedances.
Spring
First consider the spring in Figure 2.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_27.gif)
Figure 2
The displacement at the upper end of the spring should be given by
, the velocity is
.
The force which is neededed to produce this displacement is
> |
|
For the impedance of the spring we get
> |
|
Damper
We repeat the same consideration for a viscous damper.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_33.gif)
Figure 3
The displacement and the velocity are again given by
and
.
The Force on the damper is now
> |
|
> |
|
Mass
The third standard device is a rigid body with mass m.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_39.gif)
Figure 4
Now we define the displacement and the velocity again with
and
. Additionally we use now the acceleration
.
The force which is needed to move the body is
> |
|
> |
|
Elastic Half-Space
At last we give the Impedance for an elastic half-space as an example as shown in Figure 5.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_46.gif)
Figure 5
Such an elastic half-space is used to describe the soil under a foundation. It is not so easy to deduce the impedance of this half-space. It is given for example in [1] by
> |
|
In this relation
is the shear modulus,
is the Poisson's ratio and
is the specific mass of the soil.
is the angular frequency of the harmonic vibration.
is the radius of the area where the force is acting.
Quadripole Parameters
In practice two different ways to describe a quadripole as shown in Figure 1 are common. The first form is the chain form, the second is the impedance form.
Chain Form
In this form we describe the values of the input gate dependent on the values of the output gate:
Due to the condition that all forces are linearly dependantent on the displacement, velocity or the acceleration and the condition that we only consider harmonic vibrations, it follows
The values
,
,
and
are called the quadripole parameter of the chain form.
In matrix form we can write
Impedance Form
In this form we describe all forces dependent on the velocities:
Same as in the chain form, this yields
The values
,
,
and
are called the quadripole parameter of the impedance form.
In matrix form we can write
In this worksheet we use the impedance form only as an aid. So when we say "quadripole parameter" we mean the quadripole parameter of the chain form.
Conversion
Of course both forms can be converted to the other. It is practical to make this by use of procedures.
Calculate the quadripole parameter of the impedance form from the quadripole parameter of the chain form (chain form -> impedance form)
> |
chain2impedance:=proc(A) |
> |
local Z,F1,v1,F2,v2,eq1,eq2; |
> |
eq1:=F1=evalm(A&*vector(2,[F2,v2]))[1]; |
> |
eq2:=v1=evalm(A&*vector(2,[F2,v2]))[2]; |
> |
assign(solve({eq1,eq2},{F1,F2})); |
Calculate the quadripole parameter of the chain form from the quadripole parameter of the impedance form (impedance form -> chain form)
> |
impedance2chain:=proc(Z) |
> |
local A,F1,v1,F2,v2,eq1,eq2; |
> |
eq1:=F1=evalm(Z&*vector(2,[v1,v2]))[1]; |
> |
eq2:=F2=evalm(Z&*vector(2,[v1,v2]))[2]; |
> |
assign(solve({eq1,eq2},{F1,v1})); |
Quadripole Parameter of Standard Devices
Now we will give the quadripole parameter for some typical devices.
Spring
First we consider the spring shown in Figure 6
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_71.gif)
Figure 6
To get the quadripole parameter we first consider the forces
and
. To fulfill the condition for the equilibrium, the forces must be equal.
Next we know that the spring will be stretched by
With the displacement on the input gate we get
and on the output gate
For the relation between the stretching of the spring and the force we assume linearly dependence
This yields for the relation between the force and the velocities at the input gate and the output gate
or after rearrangement
Now we have the four quadripole parameter for the matrix
> |
|
> |
|
> |
|
> |
|
In matrix form we get
> |
|
Damper
Next consider the damper in Figure 7.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_88.gif)
Figure 7
The situation is equivalent to that for the spring. To fulfill the equilibrium condition,
and
must be equal.
The damper is stretched by
and the difference of the velocities on both sides is
For the relation between the relative velocity and the damping force we assume linearity
After rearrangement we get
Now we have the four quadripole parameter for the matrix
> |
|
> |
|
> |
|
> |
|
In matrix form we get
> |
|
Mass
As the last standard device, we consider the rigid body in Figure 8.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_103.gif)
Figure 8
for a rigid body, the displacement and the velocity at the input gate and at the output gate are the same.
In the equilibrium condition, we have to consider the inertia
We replace the acceleration by the velocity and get
Now we have the four quadripole parameters for the matrix
> |
|
> |
|
> |
|
> |
|
In matrix form we get
> |
|
Quadripole Parameter of a Vibration Source
In some structures the vibration source is a very complex system that cannot easily be described analytically. But sometimes the impedance
of the vibration source is known, for example from the constructer of the machine.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_115.gif)
Figure 9
For such a structure, we assume that the force
which will be transmitted to the connected device at the output gate 1 can be measured. Additionally we assume that the structure is rigid. So we know that
.
The force that generates the vibration is then
> |
|
In matrix form this yields
The matrix of the quadripole parameter is then
> |
|
Combination of Standard Devices
A lot of different devices can be described by combinations of the standard devices spring, damper and mass. There are two principal ways to combine two devices.
Serial Connection
First the devices can be combined as a chain one behind the other as shown in Figure 10.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_122.gif)
Figure 10
This is called a serial connection.We have two devices.
The device 1 has the input gate
and the output gate
.
At the same time
is the input gate of the device 2 and
is the output gate of device 2.
So we get the relations
with the quadripole parameter
of device 1 and
of device 2. Joining both equations yields
The matrix of the quadripole parameter of the serial connection of two devices is the product of the matrices of the quadripole parameter of both single devices.
.
This function is defined in the following procedure for several serial connected devices.
> |
serialconnection:=proc() |
> |
AB:=matrix(2,2,[1,0,0,1]); |
> |
for i from 1 by 1 to nargs do |
> |
AB:=multiply(AB,args[i]); |
Parallel Connection
Now we consider the situation of two devices combined in parallel as shown in Figure 11.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_133.gif)
Figure 11
This is called a parallel connection. Again we have two devices. But now the situation is a bit more complicated.
Device 1 has the input gate
and the output gate
.
Device 2 has the input gate
and the output gate
.
At last ,the input gate of the total device should be
and the output gate
.
The velocities at the input gate must all be equal. That means
and
. The same is valid for the output gate:
and
The force on both gates of the parallel connection is the sum of the forces at all single devices. That means
and
.
Now we use the impedance form of our quadripoles. We can use the above defined procedure chain2impedance to convert the quadripole parameter of the chain form
and
into the quadripole parameter of the impedance form
and
.
With this we can write
Remember that all velocities at the input gate are the same, and the same holds at the output gate. Combination of theses equations yields
or
with the matrix of the quadripole parameter of the impedance form of the total device as the sum of the matrices of the quadripole parameter of the impedance form of all the single devices
.
Finally we get the quadripole parameter of the chain form of the total device by convert ing the quadripole parameter of the impedance form by use of the procedure impedance2chain.
This process is also defined in the following procedure for several parallel connected devices.
> |
parallelconnection:=proc() |
> |
ZA:=matrix(2,2,[0,0,0,0]): |
> |
for i from 1 by 1 to nargs do |
> |
ZA:=matadd(ZA,chain2impedance(args[i]),1,1); |
> |
AB:=impedance2chain(ZA); |
Some typical combinations of standard devices
There are several combination of the above defined standard devices often used in practice. Some of them are shown here.
KELVIN-VOIGT Model
This model is used to describe visco-elastic devices as parallel connection of an ideal elastic spring with an ideal viscous damper as shown in Figure 12
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_158.gif)
Figure 12
The quadripole parameters of this model are calculated by use of the procedure parallelconnection.
The input parameters for this procedure are the matrices of the quadripole parameter of the damper
and the spring
The matrix of the quadripole parameter of the KELVIN-VOIGT model is consequently
> |
A[KELVINVOIGT]:=parallelconnection(A[damper],A[spring]); |
Additionally we will consider the impedance of such a device. This can be derived different ways. First we can consider the quadripole parameter for the case that the velocity at the output gate is
=0.
We will not do this here but we consider the relation between the force and the velocity. The force which passes through the KELVIN-VOIGT model is given by
> |
|
And the impedance is the quotient of the force and the velocity
> |
|
We see this is the sum of the impedances of the two single devices.
MAXWELL Model
This is another model which is used to describe viscous elastic devices. Here an ideal elastic spring and an ideal viscous damper are connected as a chain in series as shown in Figure 13
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_167.gif)
Figure 13
Such a device is only able to transmit dynamic forces.
The quadripole parameter of this model are calculated by use of the procedure serialconnection.
The input parameters for this procedure are again the matrices of the quadripole parameter of the damper
and the spring
The matrix of the quadripole parameter of the MAXWELL model is consequently
> |
A[MAXWELL]:=serialconnection(A[damper],A[spring]); |
Again we will also consider the impedance of such a device. We assume for this that the velocity on the output gate of this device is
. The force must go directly through the device. That means that the force on the spring and the force on the damper are eqaul:
and
. The velocity of the damper is then given by
> |
|
The displacement of the spring is
> |
|
Because we assume harmonic motion, we get for the velocity in the spring
> |
|
The velocity at the input gate of the total device is the sum of the single velocities
> |
|
And the impedance is the quotient of the force and the velocity
> |
|
Spring-Damper-Mass-System
Next we consider how a simple spring-damper-mass-system is typically used to describe the simplest structural dynamic system as a single-degree-of-freedom system. This system is shown in Figure 14
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_182.gif)
Figure 14
This model is the parallel connection of a spring and a damper and these two devices together in series with the mass. The above formalism yields the following for the total device
> |
A[spring_damper_mass]:=simplify(serialconnection(A[mass],parallelconnection(A[spring],A[damper]))); |
The impedance of this device can be deduced when we assume that the velocity at gate 2 must be 0
> |
|
From the definition of the quadripole parameter we know the relation
or written for this special case as two equations
> |
|
> |
|
The solution of this two equations yields the force at the output gate
and the velocity at the input gate
, both dependent on the force at the input gate
.
> |
sols:=solve({rel1,rel2},{F[2][spring_damper_mass],v[1][spring_damper_mass]}); |
At last we calculate the relation between the force and the velocity at the input gate to get the impedance
> |
R[spring_damper_mass] := simplify(F[1][spring_damper_mass]/v[1][spring_damper_mass]); |
4-Parametrical MAXWELL Model
At last we consider a model which is composed by four single standard devices as shown in Figure 15
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_195.gif)
Figure 15
This model is the parallel connection of two MAXWELL models, which are themselves serial connections of a spring and a damper. The damper on the left line has damping resistance
, the spring on the left line has stiffness
. The damper and the spring on the right line have the damping resistance
and the stiffness
. We use the information about the MAXWELL model for the two partial devices on the left and on the right line to get the matrices of the quadripole parameter
> |
A[a]:=subs({k=k[a],d=d[a]},evalm(A[MAXWELL])); |
> |
A[b]:=subs({k=k[b],d=d[b]},evalm(A[MAXWELL])); |
The matrix of the quadripole parameter for the total device is now easy to calculate as a parallel connection of
and
> |
A[MAXWELL2]:=simplify(parallelconnection(A[a],A[b])); |
The impedance of this device is the sum of the impedance of the MAXWELL device on the left line and that on the right line, same as in the parallel connection of a damper with a spring
> |
R[a]:=simplify(subs({k=k[a],d=d[a]},R[MAXWELL])); |
> |
R[b]:=simplify(subs({k=k[b],d=d[b]},R[MAXWELL])); |
> |
|
Example
Now we will consider an example. As shown in Figure 16 we have a a special machine as the source of the vibration. All values here and in the following are given in N, m, kg and s. Consequently the impedances are given in Ns/m. Please note: These numerical values are academic examples only.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_209.gif)
Figure 16
We have the input gate given by
> |
input:=matrix([[F[0]],[v[0]]]); |
and the output gate given by
> |
output:=matrix([[F[2]],[v[2]]]); |
The impedance of the source shall be given by its real part
> |
|
and its imaginary part
> |
|
So the impedance
is
> |
|
Let's consider graphs of these functions.
> |
PRsr:=plot(Re(R[s]),f=0..100,color=red,legend="real part"): |
> |
PRsi:=plot(Im(R[s]),f=0..100,color=green,legend="imaginary part"): |
> |
PRsa:=plot(abs(R[s]),f=0..100,color=blue,thickness=2,legend="absolute value"): |
> |
PRsp:=plot(argument(R[s]),f=0..100,color=cyan,legend="argument"): |
Most of the time, the absolute value is the most interesting, so we draw it with a thick line.
> |
display(PRsr,PRsi,PRsa,title="Impedance of the Vibration Source"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_217.gif)
The argument of this function is shown in the next picture
> |
display(PRsp,title="Impedance of the Vibration Source"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_218.gif)
The matrix of the quadripole parameter of the vibration source follows from above
> |
A[s]:=matrix(2,2,[1,R[s],0,1]); |
Next we consider the foundation, the recipient. We assume the following numerical values and use the definition for the elastic half-space defined above.
> |
|
The impedance of the recipient is then
> |
R[r]:=complexextension(subs({soil,sub1},R[ELASTIC_HALF_SPACE])); |
This result is best shown graphically. The first picture shows the real part, the imaginary part and the absolute value.
> |
PEr:=plot(Re(R[r]),f=0..100,vw,color=red,legend="real part"): |
> |
PEi:=plot(Im(R[r]),f=0..100,vw,color=green,legend="imaginary part"): |
> |
PEa:=plot(abs(R[r]),f=0..100,vw,color=blue,thickness=2,legend="absolute value"): |
> |
PEp:=plot(argument(R[r]),f=0..100,-Pi..Pi,color=cyan,legend="argument"): |
> |
display(PEr,PEi,PEa,title="Impedance of the Ground"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_222.gif)
The next picture shows the angle between the real part and the imaginary part of the impedance.
> |
display(PEp,title="Impedance of the Ground"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_223.gif)
Now we consider some devices which are arranged between the machine and the soil for vibration control. Here we assume that the excitation force
for all the following examples is identical. That means that there is no feedback interaction from the structure to the source of the excitation. Otherwise this problem would be much more complicated and not so easily solved without more details about the excitation.
Rigid Connection
Rigid connection means that the machine stands on the ground without any device. So we have the relation
That means for the matrix of the quadripole parameter
> |
A[rigid]:=matrix([[1,0],[0,1]]); |
The total structure is a serial connection of the source with a rigid connection.
> |
A[1]:=serialconnection(A[s],A[rigid]); |
Of course this is the same as the matrix of the quadripole parameter of the source itself. The relation between the values of the input gate
,
and the values at the output gate
,
is
> |
eq[1]:=input=A[1]&*output; |
This yields for the values of the output gate
> |
sol[1]:=linsolve(A[1],input); |
This means
> |
F_rigid[2]:=sol[1][1,1]; |
> |
v_rigid[2]:=sol[1][2,1]; |
At last we use our information about the impedance of the output gate
> |
|
The solution of this equation yields the velocity at the input gate dependent on the force at the input gate
> |
sol[2]:=simplify(solve(eq[2],v[0])); |
![sol[2] := -1/50000*f*F[0]*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)/(-1805*Pi^6*f^5-312500000*Pi^2*f^3-902500*I*Pi^5*f^4-156250000000*...](/view.aspx?SI=4512/Impedanz_239.gif)
![sol[2] := -1/50000*f*F[0]*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)/(-1805*Pi^6*f^5-312500000*Pi^2*f^3-902500*I*Pi^5*f^4-156250000000*...](/view.aspx?SI=4512/Impedanz_240.gif)
For the velocity on the output gate we get
> |
v_r[2]:=simplify(subs(v[0]=sol[2],v_rigid[2])); |
![v_r[2] := -1/50000*f*F[0]*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)/(-1805*Pi^6*f^5-312500000*Pi^2*f^3-902500*I*Pi^5*f^4-156250000000*...](/view.aspx?SI=4512/Impedanz_242.gif)
![v_r[2] := -1/50000*f*F[0]*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)/(-1805*Pi^6*f^5-312500000*Pi^2*f^3-902500*I*Pi^5*f^4-156250000000*...](/view.aspx?SI=4512/Impedanz_243.gif)
We use this derivation later again, so it makes sense to define this in form of a procedure
> |
local sol1,sol2,v1,F1,F2,v2,vs2,eq; |
> |
sol1:=linsolve(A,input); |
> |
sol2:=simplify(solve(eq,v1)); |
> |
vs2:=simplify(subs(v1=sol2,v2)); |
We show the result for the ground velocity graphically
> |
PErr:=plot(Re(v_r[2]/F[0]),f=0..100,color=red,legend="real part"): |
> |
PEri:=plot(Im(v_r[2]/F[0]),f=0..100,color=green,legend="imaginary part"): |
> |
PEra:=plot(abs(v_r[2]/F[0]),f=0..100,color=blue,thickness=2,legend="absolute value"): |
> |
display(PErr,PEri,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_245.gif)
Vibration Isolation by a Spring
Next we consider the situation that a spring is set between the machine and the ground . Then we have the matrix of the quadripole parameter of the spring with the stiffness
> |
|
> |
A[ex]:=subs({sub1,k=k[2]},evalm(A[spring])); |
and the matrix of the quadripole parameter of the serial connection of the vibration source and the spring
> |
A[2]:=serialconnection(A[s],A[ex]); |
We get the velocity at the output gate by use of the above defined procedure
> |
v_s[2]:=trans(A[2],input,R[r]); |
![v_s[2] := 1/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-1953125000000000000*I+15625000000000*Pi^3*f^3+902500*I*Pi^5*f^4+1...](/view.aspx?SI=4512/Impedanz_249.gif)
![v_s[2] := 1/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-1953125000000000000*I+15625000000000*Pi^3*f^3+902500*I*Pi^5*f^4+1...](/view.aspx?SI=4512/Impedanz_250.gif)
The most important point is now the comparison between the velocity in the case of the rigid position of the machine on the ground with the velocity with the spring between machine and ground.
In blue, the velocity of the case of the rigid connection is displayed.
> |
PEsa:=plot(abs(v_s[2]/F[0]),f=0..100,color=cyan,thickness=2,legend="absolute value spring"): |
> |
display(PEsa,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_252.gif)
Most interesting is normally the question, what is the relation between the absolute value of the velocity at the output gate in case of the rigid support and the isolated support by use of a spring. This is usually shown in a special logarithmic scale. For details please see the literature, for example [1]. We calculate the quotient between the velocity of the ground in case of rigid connection and that in case of supporting by use of any device, here the spring. Then we have to calculate the logarithm and multiply by 20. This result has no physical dimension. It is called the insertion loss for the inserted device. To emphasize this kind of presentation, we use the pseudo dimension dB (decibel). Although this property belongs to the inserted device, it depends on the impedance of the vibration source and the impedance of the recipient, here the ground. Strictly speaking, it is not possible to give the insertion loss of a pure device but only in combination with its use.
Here we calculate the insertion loss of the spring.
> |
dv_rs:=simplify(20*log[10](abs(v_r[2]/v_s[2]))); |


> |
PErsa:=plot(dv_rs,f=0..100,color=cyan,legend="spring",title="Insertion Loss in dB",thickness=2): |
![[Plot]](/view.aspx?SI=4512/Impedanz_256.gif)
Vibration Isolation by a Damper
Next we consider the situation that a damper is set between the machine and the ground . Of course this idea is more theoretically interesting, because the damper itself cannot carry the static load of a machine. In reality there must be some device that can do that.
We have the matrix of the quadripole parameter of the damper with the damping residence
> |
|
> |
A[fx]:=subs({sub1,d=d[3]},evalm(A[damper])); |
and the matrix of the quadripole parameter of the serial connection of the vibration source and the damper
> |
A[3]:=serialconnection(A[s],A[fx]); |
We get the velocity at the output gate by use of the above defined procedure
> |
v_d[2]:=trans(A[3],input,R[r]); |
![v_d[2] := -3/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-468750000000*I*Pi*f^2-2707500*I*Pi^5*f^4+187500000*I*Pi^3*f^4+10...](/view.aspx?SI=4512/Impedanz_260.gif)
![v_d[2] := -3/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-468750000000*I*Pi*f^2-2707500*I*Pi^5*f^4+187500000*I*Pi^3*f^4+10...](/view.aspx?SI=4512/Impedanz_261.gif)
![v_d[2] := -3/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-468750000000*I*Pi*f^2-2707500*I*Pi^5*f^4+187500000*I*Pi^3*f^4+10...](/view.aspx?SI=4512/Impedanz_262.gif)
The following diagram shows the ground velocities for all the previously considered situations
> |
PEda:=plot(abs(v_d[2]/F[0]),f=0..100,color=magenta,thickness=2,legend="absolute value damper"): |
> |
display(PEda,PEsa,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_264.gif)
Again we calculate the insertion loss of the damper
> |
dv_rd:=simplify(20*log[10](abs(v_r[2]/v_d[2]))); |



> |
PErda:=plot(abs(dv_rd),f=0..100,color=magenta,legend="damper",title="Insertion Loss in dB",thickness=2): |
![[Plot]](/view.aspx?SI=4512/Impedanz_269.gif)
It seems that the damper, especially in the range of lower frequencies, gives the better reduction of the vibration. Only for higher frequencies, in this example from about 50 Hz, the spring support yields a higher insertion loss than the spring. Unfortunately the damper itself cannot carry the static load, so we need something as a spring. Let's consider what happens when we use a combination of a spring and a damper.
Vibration Isolation by a KELVIN-VOIGT Device
Next we consider the situation that a combination of a spring and a damper according the KELVIN-VOIGT model is set between the machine and the ground . Then we have the matrix of the quadripole parameter of the device with the spring stiffness
and the damping residence
.
> |
A[gx]:=subs({sub1,d=d[3],k=k[2]},evalm(A[KELVINVOIGT])); |
and the matrix of the quadripole parameter of the serial connection of the vibration source and the KELVIN-VOIGT device is
> |
A[4]:=serialconnection(A[s],A[gx]); |
We get again the velocity at the output gate by use of the above defined procedure
> |
v_KV[2]:=trans(A[4],input,R[r]); |
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_274.gif)
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_275.gif)
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_276.gif)
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_277.gif)
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_278.gif)
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_279.gif)
![v_KV[2] := -1/50000*(24707031250000000000000*Pi^2*f^2+5018973975*Pi^10*f^8+487500000000000000000*I*Pi^3*f^3+19494000*I*Pi^11*f^9-110540625000000000*I*Pi^5*f^5+3375000000000*I*Pi^7*f^7+2815800000000000...](/view.aspx?SI=4512/Impedanz_280.gif)
The following diagram shows the ground velocities
> |
PEKVa:=plot(abs(v_KV[2]/F[0]),f=0..100,color=brown,thickness=2,legend="absolute value KELVIN-VOIGT"): |
> |
display(PEKVa,PEda,PEsa,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_282.gif)
Again we calculate the insertion loss of the device
> |
dv_rKV:=simplify(20*log[10](abs(v_r[2]/v_KV[2]))); |


> |
PErKVa:=plot(dv_rKV,f=0..100,color=brown,legend="KELVIN-VOIGT",title="Insertion Loss in dB",thickness=2): |
> |
display(PErKVa,PErda,PErsa); |
![[Plot]](/view.aspx?SI=4512/Impedanz_286.gif)
As expected this solution is somewhere between the support by a spring and the support by a damper. The advantage of the KELVIN-VOIGT device against the single spring is the fact that there is not so big an incursion in the insertion loss.
Vibration Isolation by a MAXWELL Device
Next we consider the situation that a combination of a spring and a damper according the MAXWELL model with the spring stiffness
and the damping residence
is set between the machine and the ground . As with the single damper, this device cannot carry static loads and is not capable for practical use of supporting a machine.
We have the matrix of the quadripole parameter of the device
> |
A[hx]:=subs({sub1,d=d[3],k=k[2]},evalm(A[MAXWELL])); |
and the matrix of the quadripole parameter of the serial connection of the vibration source and the spring
> |
A[5]:=serialconnection(A[s],A[hx]); |
The velocity at the output gate is now
> |
v_MW[2]:=trans(A[5],input,R[r]); |
![v_MW[2] := -3/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-468750000000*I*Pi*f^2+5859375000000000000*I+187500000*I*Pi^3*f^...](/view.aspx?SI=4512/Impedanz_291.gif)
![v_MW[2] := -3/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-468750000000*I*Pi*f^2+5859375000000000000*I+187500000*I*Pi^3*f^...](/view.aspx?SI=4512/Impedanz_292.gif)
![v_MW[2] := -3/50000*(361*Pi^8*f^6+62500000*Pi^4*f^4+2256250000*Pi^4*f^2+390625000000000-1795975*Pi^6*f^4-310937500000*Pi^2*f^2)*f*F[0]/(-468750000000*I*Pi*f^2+5859375000000000000*I+187500000*I*Pi^3*f^...](/view.aspx?SI=4512/Impedanz_293.gif)
The following diagram shows the ground velocities
> |
PEMWa:=plot(abs(v_MW[2]/F[0]),f=0..100,color=green,thickness=2,legend="absolute value MAXWELL"): |
> |
display(PEMWa,PEKVa,PEda,PEsa,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_295.gif)
We calculate the insertion loss of the device
> |
dv_rMW:=simplify(20*log[10](abs(v_r[2]/v_MW[2]))); |



> |
PErMWa:=plot(dv_rMW,f=0..100,color=green,legend="MAXWELL",title="Insertion Loss in dB",thickness=2): |
> |
display(PErMWa,PErKVa,PErda,PErsa); |
![[Plot]](/view.aspx?SI=4512/Impedanz_300.gif)
Up to now this model is the best one for elimating ground vibrations. Unfortunately it cannot be used because it cannot carry static loads.
Vibration Isolation by Double Spring Device with one Damper
Next we consider the situation that a combination of a spring, an additional mass and a second spring in series and parallel to this damper is set between the machine and the ground . This device is shown in Figure 17.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_301.gif)
Figure 17
The spring stiffness shall be
> |
|
> |
|
and the damping resistance is again
.
The mass shall be
> |
|
The matrices of the single quadripole parameter are
first spring:
> |
Am:=subs(k=k[a6],evalm(A[spring])); |
mass
> |
An:=subs(m=m[6],evalm(A[mass])); |
second spring
> |
Ao:=subs(k=k[b6],evalm(A[spring])); |
damper
> |
Ap:=subs(d=d[3],evalm(A[damper])); |
The matrix of the quadripole parameter of the serial connection of the spring, the mass and the second spring is
> |
Amno:=serialconnection(Am,An,Ao); |
And the parallel connection from this with the damper is
> |
Amnop:=parallelconnection(Amno,Ap); |
This yields with the source in series
> |
A[6]:=subs(sub1,serialconnection(A[s],Amnop)); |
![A[6] := matrix([[(-8000*I*Pi^2*f^2+40000000*I-240000*Pi*f+24*Pi^3*f^3)/(40000000*I-240000*Pi*f+24*Pi^3*f^3)+1/10*(250000*Pi^2*f^2/(6250000-4975*Pi^2*f^2+Pi^4*f^4)-50000*I*Pi*f*(-2500+Pi^2*f^2)/(625000...](/view.aspx?SI=4512/Impedanz_314.gif)
![A[6] := matrix([[(-8000*I*Pi^2*f^2+40000000*I-240000*Pi*f+24*Pi^3*f^3)/(40000000*I-240000*Pi*f+24*Pi^3*f^3)+1/10*(250000*Pi^2*f^2/(6250000-4975*Pi^2*f^2+Pi^4*f^4)-50000*I*Pi*f*(-2500+Pi^2*f^2)/(625000...](/view.aspx?SI=4512/Impedanz_315.gif)
The velocity at the output gate is
> |
v_m[2]:=trans(A[6],input,R[r]); |
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_317.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_318.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_319.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_320.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_321.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_322.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_323.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_324.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_325.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_326.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_327.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_328.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_329.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_330.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_331.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_332.gif)
![v_m[2] := -1/10000*(5062500000*Pi^16*f^16+23546315250000*Pi^16*f^14+29241*Pi^20*f^18-1315113975*Pi^18*f^16-227685937500000*Pi^14*f^14+244140625000000000000000000000000000000000+4076578125000000000*Pi^...](/view.aspx?SI=4512/Impedanz_333.gif)
The following diagram shows the ground velocities for all the up to now situations
> |
PEma:=plot(abs(v_m[2]/F[0]),f=0..100,color=red,thickness=2,legend="absolute value double spring with one damper"): |
> |
display(PEma,PEMWa,PEKVa,PEda,PEsa,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_335.gif)
We calculate the insertion loss of the device
> |
dv_rm:=simplify(20*log[10](abs(v_r[2]/v_m[2]))); |




> |
PErma:=plot(dv_rm,f=0..100,color=red,legend="double elastic support",title="Insertion Loss in dB",thickness=2): |
> |
display(PErma,PErMWa,PErKVa,PErda,PErsa); |
This devise is not so easy to classify, because to do this we must consider a lot of different combinations of spring stiffness, damping resistances and Additionally masses. The combination we used in this example seems not to be a very good solution.
![[Plot]](/view.aspx?SI=4512/Impedanz_341.gif)
Vibration Isolation by Double Spring-Damper Device
Next we consider the situation that a combination of a KELVIN-VOIGT device, an additional mass and a second KELVIN-VOIGT device in series is set between the machine and the ground as shown in Figure 18.
![[Inserted Image]](/view.aspx?SI=4512/Impedanz_342.gif)
Figure 18
The spring stiffness shall be
> |
|
> |
|
and the damping resistance is
> |
|
> |
|
The mass shall be
The matrices of the single quadripole parameter are
first KELVIN-VOIGT device:
> |
Aq:=subs({k=k[a7],d=d[a7]},evalm(A[KELVINVOIGT])); |
mass
> |
Ar:=subs(m=m[7],evalm(A[mass])); |
second KELVIN-VOIGT device
> |
As:=subs({k=k[b7],d=d[b7]},evalm(A[KELVINVOIGT])); |
The matrix of the quadripole parameter of the serial connection of the fist KELVIN-VOIGT device, mass and the second KELVIN-VOIGT device is
> |
Aqrs:=serialconnection(Aq,Ar,As); |
This yields with the source in series
> |
A[7]:=subs(sub1,serialconnection(A[s],Aqrs)); |
![A[7] := matrix([[-4*I*Pi^2*f^2/(-120*Pi*f+20000*I)+1+(250000*Pi^2*f^2/(6250000-4975*Pi^2*f^2+Pi^4*f^4)-50000*I*Pi*f*(-2500+Pi^2*f^2)/(6250000-4975*Pi^2*f^2+Pi^4*f^4))*(-2*Pi*f/(-120*Pi*f+20000*I)-2*(-...](/view.aspx?SI=4512/Impedanz_356.gif)
![A[7] := matrix([[-4*I*Pi^2*f^2/(-120*Pi*f+20000*I)+1+(250000*Pi^2*f^2/(6250000-4975*Pi^2*f^2+Pi^4*f^4)-50000*I*Pi*f*(-2500+Pi^2*f^2)/(6250000-4975*Pi^2*f^2+Pi^4*f^4))*(-2*Pi*f/(-120*Pi*f+20000*I)-2*(-...](/view.aspx?SI=4512/Impedanz_357.gif)
The velocity at the output gate is
> |
v_z[2]:=trans(A[7],input,R[r]); |
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_359.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_360.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_361.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_362.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_363.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_364.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_365.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_366.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_367.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_368.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_369.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_370.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_371.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_372.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_373.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_374.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_375.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_376.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_377.gif)
![v_z[2] := -1/2*(443920898437500000000000000000000*Pi^5*f^5-15258789062500000000000000000000000000000*I+3300139260*Pi^17*f^15+571353750000000*Pi^13*f^13-83426003906250000000000000000*Pi^7*f^7-100598144...](/view.aspx?SI=4512/Impedanz_378.gif)
The following diagram shows the ground velocities
> |
PEza:=plot(abs(v_z[2]/F[0]),f=0..100,color=maroon,thickness=2,legend="absolute value double spring-damper device"): |
> |
display(PEza,PEma,PEMWa,PEKVa,PEda,PEsa,PEra,title="Ground Velocity in m/s"); |
![[Plot]](/view.aspx?SI=4512/Impedanz_380.gif)
We calculate the insertion loss of the device
> |
dv_rz:=simplify( 20*log[10](abs(v_r[2]/v_z[2])) ):
|
> |
PErza:=plot(dv_rz,f=0..100,color=maroon,legend="double spring-damper device",title="Insertion Loss in dB",thickness=2): |
> |
display(PErza,PErma,PErMWa,PErKVa,PErda,PErsa); |
![[Plot]](/view.aspx?SI=4512/Impedanz_381.gif)
Consider that this device has the same additional mass as the device above. The only difference between both models is the fact that the damper here is divided in two, just as the spring, so the motion of the additional mass is directly damped in this model. The advantage is easy to see in the insertion loss. We get with this device for frequencies higher than about 60 Hz the best values for the insertion loss. Such devices are often used for the isolation of machines in very sensitive areas, for example, in ships. The vibration of the motor of a ship otherwise can easily be transmitted through all the ship.
But once again: Remember that all numerical values are only academic examples. Real devises have more complicated properties than we can show here. For exdample, the spring itself is a mass, every real damper has a certain stiffness, and I don't believe that one can find in reality a vibration source with such a simple form of the impedancethe as described here .
Literature
[1] M. Heckl, H.A. Mller, Taschenbuch der Technischen Akustik, p. 571-595, Springer-Verlag, 2nd Edition, Berlin 1994
[2] E. Seidel, Wirksamkeit von Konstruktionen zur Schwingungs- und Krperschalldmmung in Maschinen und Gerten, Schriftenreihe der Bundesanstalt fr Arbeitsschutz und Arbeitsmedizin, Dortmund/Berlin 1999