Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5847e99

Browse files
authoredFeb 13, 2021
Merge 341db65 into 6bb0af1
2 parents 6bb0af1 + 341db65 commit 5847e99

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎feBeam2d.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ func (m Model) distance(st, en int) (res float64) {
1818
m.Points[st][1]-m.Points[en][1])
1919
}
2020

21-
// matrix of stiffiner for beam 2d
21+
// matrix of stiffiner for beam 2d.
22+
// local linear-elastic stiffiness matrix
2223
func (m Model) getStiffBeam2d(pos int) *mat.Dense {
2324
data := make([]float64, 36)
2425
kr := mat.NewDense(6, 6, data)
@@ -273,3 +274,5 @@ func (m Model) getGeometricBeam2d(pos int, lc *LoadCase) *mat.Dense {
273274
// TODO: add implementation
274275
panic("add implementation")
275276
}
277+
278+
// TODO: The tangent stiffness matrix contains information regarding both the linear elastic and geometric stiffness of the structure.

0 commit comments

Comments
 (0)
Please sign in to comment.