⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 symgbklg.cc

📁 ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.
💻 CC
字号:
/*   ARPACK++ v1.0 8/1/1997   c++ interface to ARPACK code.   MODULE SymGBklg.cc.   Example program that illustrates how to solve a real symmetric   generalized eigenvalue problem in buckling mode using the   ARSymGenEig class.   1) Problem description:      In this example we try to solve A*x = B*x*lambda in buckling      mode, where A and B are obtained from the finite element      discretrization of the 1-dimensional discrete Laplacian                                d^2u / dx^2      on the interval [0,1] with zero Dirichlet boundary conditions      using piecewise linear elements.   2) Data structure used to represent matrices A and B:      When using ARSymGenEig, the user is required to provide some      classes that contain as member functions the matrix-vector      products w = OP*Bv = inv(A-sigma*B)*A*v and w = A*v.       In this example, SymGenProblemB is a class that contains two       member functions, MultOPv and MultAv. The first takes a vector v       and returns the product OPv. The second performs the product Av.   3) Included header files:      File             Contents      -----------      -------------------------------------------      sgenprbb.h       The SymGenProblemB class definition.      argsym.h         The ARSymGenEig class definition.      symgsol.h        The Solution function.   5) ARPACK Authors:      Richard Lehoucq      Kristyn Maschhoff      Danny Sorensen      Chao Yang      Dept. of Computational & Applied Mathematics      Rice University      Houston, Texas*/#include "sgenprbb.h"#include "symgsol.h"#include "argsym.h"template<class T>void Test(T type){  // Creating a symmetric generalized problem with n = 100.  SymGenProblemB<T> P(100, 1.0);  // Defining what we need: the four eigenvectors nearest to 1.0.  // P.MultOPv is the function that performs the product w <- OPv.  // P.MultAv is the function that performs the product w <- Av.  // 'B' is passes as a parameter to indicate that we will use the   // buckling mode.  ARSymGenEig<T, SymGenProblemB<T>, SymGenProblemB<T> >    dprob('B', P.A.ncols(), 4, &P, &SymGenProblemB<T>::MultOPv,          &P, &SymGenProblemB<T>::MultAv, 1.0);  // Finding eigenvalues and eigenvectors.  dprob.FindEigenvectors();  // Printing solution.  Solution(P.A, P.B, dprob);} // Test.main(){  // Solving a double precision problem with n = 100.  Test((double)0.0);  // Solving a single precision problem with n = 100.  Test((float)0.0);} // main

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -