STAIRLab logo
  • Docs 
  • Examples 
  •  

3-DOF eigenvalues

1 min read • 58 words

checking eigen results of smallest and largest values

3 springs in series, K=30,20,10K = 30,20,10 , M=11.1,22.2,33.3M = 11.1,22.2,33.3

results as computed by matlab: 0.139300647653736 1.05865310768512 4.9582024008173

using following 3 commands:

  format longG
  K = [[50 -20 0];[-20 30 -10];[0 -10 10]]
  M = [[11.1 0 0];[0 22.2 0];[0 0 33.3]]
  eig(K,M)

puts “Small 3 dof 2 spring model: checking eigen results of smallest and largest values”

 2D Linear and Nonlinear Truss Examples by Popov
3D Plasticity 
3-DOF eigenvalues
3-DOF eigenvalues
A gallery of technical examples currated by the STAIRLab at UC Berkeley.
Code licensed BSD, docs CC BY-NC 4.0
 
Links
Home 
About 
Docs 
Examples
Working with solids 
Nonlinear dynamics 
Basic Statics 
Community
Issues   
Discussions   
Contribute 
STAIRLab
Code copied to clipboard