You are on page 1of 3

(2) (2)

(6) (6)
(8) (8)
(1) (1)
(9) (9)
(4) (4)
(7) (7)
(5) (5)
3.0 MAPLE PROGRAMMING
Assigned Project:
Solution of Dynamic Beam equation i.e. EulerLagrange version of Euler-
Burnoullie Beam Equation for a simply supported beam.
4th Order partial differential equation as follow.
A
v
2
v t
2
u x, t + E I
v
4
v x
4
u x, t = f(x, t), x2(0, L), t2(0, )
restart;
with LinearAlgebra :
All input parameters are marked in orange colour.
Mass of the beam per unit length in Kg/m, md22.2;
22.2
Length of the beam in meter, L d5;
5
Start point of triangular load, x1 d2.25;
2.25
End of triangular load, x3 d2.75;
2.75
Vertex of triangular load, x2 d2.5;
2.5
Young's Modulous in N/m
2
, E d2$10
11
;
200000000000
Moment of the innertia of the cross section of the beam in m
4
, MI d2317$10
K8
;
2317
100000000
Height of triangular load value in N, P dK10
8
; " Note:- "-ve" Negative sign indicate load will act
downward
Assigned number of Fourier Coefficient before truncation:
Nd100;
Md50;
100
50
(10) (10)
Eigen Function:
X d x, n / sin
i$$x
L
:
Value of constant a:
a d
E$MI
m
0.5
;
Eigen frequency:
d n /a$
n
2
$
2
L
2
:
n :
EigenFreq dVector 5 :
First Five Eigen frequency:
for i from 1 to 5 do
EigenFreq i da$
i
2
$
2
L
2
;
end do:
F dVector 5 :
for i from 1 to 5 do
F i dsin
i$Pi
L
$x ;
end do:

with plots :
animate, animate3d, animatecurve, arrow, changecoords, complexplot, complexplot3d,
conformal, conformal3d, contourplot, contourplot3d, coordplot, coordplot3d, densityplot,
display, dualaxisplot, fieldplot, fieldplot3d, gradplot, gradplot3d, implicitplot,
implicitplot3d, inequal, interactive, interactiveparams, intersectplot, listcontplot,
listcontplot3d, listdensityplot, listplot, listplot3d, loglogplot, logplot, matrixplot, multiple,
odeplot, pareto, plotcompare, pointplot, pointplot3d, polarplot, polygonplot,
polygonplot3d, polyhedra_supported, polyhedraplot, rootlocus, semilogplot, setcolors,
setoptions, setoptions3d, spacecurve, sparsematrixplot, surfdata, textplot, textplot3d,
tubeplot
fplot dArray 1..5, 1..1 :
for i from 1 to 5 do
fplot i dmultiple plot, F i , x =0..5, axis = gridlines = 20, colour =green, majorlines =5 ,
thickness =3, colour ="Red", legend ="MODE SHAPE" , title ="Eigen Function", titlefont
= title, "ROMAN", 20 ;
end do:
display fplot, axis = gridlines = 20, colour =grey, majorlines =5 , axesfont = axes,
"HELVETICA", "ROMAN", 10 , title
="FIRST FIVE MODE SHAPE OF EIGEN FUNCTION" ;

MODE SHAPE
x
0 0.25 0.75 1 1.25 1.75 2 2.25 2.753 3.25 3.754 4.25 4.755
0
0.20
0.40
0.60
0.80
1
FIRST FIVE MODE SHAPE OF
EIGEN FUNCTION
MODE SHAPE
x
0.25 0.751 1.25 1.752 2.25 2.75 3 3.25 3.75 4 4.25 4.755
K1
K0.8
K0.6
K0.4
K0.2
0
0.2
0.4
0.6
0.8
1
FIRST FIVE MODE SHAPE OF
EIGEN FUNCTION

You might also like