eigs#
- MapdlMath.eigs(nev, k, m=None, c=None, phi=None, algo=None, fmin=None, fmax=None, cpxmod=None)[source]#
Solve an eigenproblem.
- Parameters:
- nev
int
Number of eigenvalues to compute.
- k
ansys.AnsMat
An array representing the operation
A * x
where A is a square matrix.- m
ansys.AnsMat
,optional
An array representing the operation
M * x
for the generalized eigenvalue problem:K * x = M * x
- nev
Examples
Solve an eigenproblem using the mass and stiffness matrices stored from a prior ansys run.
>>> k = mm.stiff() >>> m = mm.mass() >>> nev = 10 >>> a = mm.mat(k.nrow, nev) >>> ev = mm.eigs(nev, k, m, phi=a)