Element stiffness matrix for 4 noded quadrilateral - Code Answer Flashcards

1
Q

What does the ‘for in = 1 : nnode;’ loop consist of?

A

elcod(in, 1 : ndime) = coord(lnods(ielem, in), 1 : ndime);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What line (2 statements) comes under ‘%Set local coordinates xi and eta at the current gauss point position’?

A

xi = posgp(igaus, 1); eta = posgp(igaus, 2);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What line comes under ‘[jac, jaci, detJ, cartd] = jacob(ndime, nnode, elcod, xi, eta, shape, deriv);’?

A

dvolu = detJ * weigp(igaus) * thick;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What THREE LINES come under ‘%Form DB matrix and element stiffness matrix’?

A
dbmat = dmatx * bmatx; 
bdbmt = bmatx * dbmat;
estif = estif + bdbmt * dvolu;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly