Skip to content

Commit

Permalink
Merge 341db65 into 6bb0af1
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin8105 authored Feb 13, 2021
2 parents 6bb0af1 + 341db65 commit 5847e99
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion feBeam2d.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ func (m Model) distance(st, en int) (res float64) {
m.Points[st][1]-m.Points[en][1])
}

// matrix of stiffiner for beam 2d
// matrix of stiffiner for beam 2d.
// local linear-elastic stiffiness matrix
func (m Model) getStiffBeam2d(pos int) *mat.Dense {
data := make([]float64, 36)
kr := mat.NewDense(6, 6, data)
Expand Down Expand Up @@ -273,3 +274,5 @@ func (m Model) getGeometricBeam2d(pos int, lc *LoadCase) *mat.Dense {
// TODO: add implementation
panic("add implementation")
}

// TODO: The tangent stiffness matrix contains information regarding both the linear elastic and geometric stiffness of the structure.

0 comments on commit 5847e99

Please sign in to comment.