Nonlinear finite elements/Homework 6/Solutions/Problem 1/Part 8

From testwiki
Revision as of 16:19, 26 August 2020 by imported>ShakespeareFan00
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Problem 1: Part 8

Consider the curved composite beam shown in Figure 12.

File:CompositeShell.png
Figure 12. Composite Beam.

Assume that the beam has been shaped into an arc of a circle. The material of the beam is a transversely isotropic fiber composite material with the fibers running along the length of the beam. The rate constitutive relation of the material is given by

DDt[σ11σ22σ33σ23σ31σ12]=[C11C12C13000C12C11C13000C13C13C33000000C44000000C44000000(C11C12)/2][D11D22D33D23D31D12].


The problem becomes easier to solve if we consider numerical values of the parameters. Let the local nodes numbers of element 5 be 1 for node 5, and 2 for node 6.

Let us assume that the beam is divided into six equal sectors. Then,

θ=π4;θ1=π3;θ2=π6.

Let r1=1 and r2=1.2. Since the blue point is midway between the two, r=1.1.

Also, let the components of the stiffness matrix of the composite be

C11=10;C33=100;C12=6;C13=60;C44=30.

Let the velocities for nodes 1 and 2 of the element be

𝐯1=[v1xv1yω1]=[121];𝐯2=[v2xv2yω2]=[211]

The Maple code for these initializations is shown below

> with(linalg):
> #
> # Input geometry
> #
> theta:= evalf(Pi/4):
> theta1 := evalf(theta + Pi/12):
> theta2 := evalf(theta - Pi/12):
> r1:= 1; r2 := 1.2; r:= (r1+r2)/2;
> #
> # Input material properties
> #
> C11 := 10; C33:= 100; C12:= 6; C13 := 60; C44 := 30;
> CC := (C11-C12)/2;
> #
> # Input velocities
> #
> vx1 := 1; vy1 := 2; w1 := 1;
> vx2 := 2; vy2 := 1; w2 := 1;
> v1master := linalg[matrix](3,1,[vx1,vy1,w1]);
> v2master := linalg[matrix](3,1,[vx2,vy2,w2]);

Template:Subpage navbar