! ! CalculiX - A 3-dimensional finite element program ! Copyright (C) 1998-2007 Guido Dhondt ! ! This program is free software; you can redistribute it and/or ! modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation(version 2); ! ! ! This program is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! GNU General Public License for more details. ! ! You should have received a copy of the GNU General Public License ! along with this program; if not, write to the Free Software ! Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ! subroutine frequencies(inpc,textpart,nmethod, & mei,fei,iperturb,istep,istat,n,iline,ipol,inl, & ipoinp,inp,ithermal,isolver,xboun,nboun,ipoinpc) ! ! reading the input deck: *FREQUENCY ! implicit none ! character*1 inpc(*) character*20 solver character*132 textpart(16) ! integer nmethod,mei(4),ncv,mxiter,istep,istat,iperturb,i,nboun, & n,key,iline,ipol,inl,ipoinp(2,*),inp(3,*),nev,ithermal,isolver, & ipoinpc(0:*) ! real*8 fei(3),pi,fmin,fmax,tol,xboun(*) ! pi=4.d0*datan(1.d0) mei(4)=0 ! if(istep.lt.1) then write(*,*) '*ERROR in frequencies: *FREQUENCY can only be used' write(*,*) ' within a STEP' stop endif ! ! no heat transfer analysis ! if(ithermal.gt.1) then ithermal=1 endif ! ! default solver ! if(isolver.eq.0) then solver(1:7)='SPOOLES ' elseif(isolver.eq.1) then solver(1:7)='PROFILE ' elseif(isolver.eq.2) then solver(1:16)='ITERATIVESCALING ' elseif(isolver.eq.3) then solver(1:17)='ITERATIVECHOLESKY ' elseif(isolver.eq.4) then solver(1:3)='SGI ' elseif(isolver.eq.5) then solver(1:5)='TAUCS ' endif ! do i=2,n if(textpart(i)(1:7).eq.'SOLVER=') then read(textpart(i)(8:27),'(a20)') solver elseif(textpart(i)(1:11).eq.'STORAGE=YES') then mei(4)=1 endif enddo ! if(solver(1:7).eq.'SPOOLES') then isolver=0 elseif(solver(1:7).eq.'PROFILE') then write(*,*) '*WARNING in frequencies: the profile solver is not' write(*,*) ' allowed in frequency calculations;' write(*,*) ' the default solver is used' elseif(solver(1:16).eq.'ITERATIVESCALING') then write(*,*) '*WARNING in frequencies: the iterative scaling' write(*,*) ' procedure is not available for frequency' write(*,*) ' calculations; the default solver is used' elseif(solver(1:17).eq.'ITERATIVECHOLESKY') then write(*,*) '*WARNING in frequencies: the iterative scaling' write(*,*) ' procedure is not available for frequency' write(*,*) ' calculations; the default solver is used' elseif(solver(1:3).eq.'SGI') then isolver=4 elseif(solver(1:5).eq.'TAUCS') then isolver=5 elseif(solver(1:13).eq.'MATRIXSTORAGE') then isolver=6 else write(*,*) '*WARNING in frequencies: unknown solver;' write(*,*) ' the default solver is used' endif ! if((isolver.eq.2).or.(isolver.eq.3)) then write(*,*) '*ERROR in frequencies: the default solver ', & solver write(*,*) ' cannot be used for frequency calculations ' stop endif ! nmethod=2 if(iperturb.gt.1) iperturb=0 ! call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl, & ipoinp,inp,ipoinpc) if((istat.lt.0).or.(key.eq.1)) then write(*,*) '*ERROR in frequencies: definition not complete' write(*,*) ' ' call inputerror(inpc,ipoinpc,iline) stop endif read(textpart(1)(1:10),'(i10)',iostat=istat) nev if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) if(nev.le.0) then write(*,*) '*ERROR in frequencies: less than 1 eigenvalue re &quested' stop endif tol=1.d-2 ncv=4*nev ncv=ncv+nev mxiter=1000 read(textpart(2)(1:20),'(f20.10)',iostat=istat) fmin if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) read(textpart(3)(1:20),'(f20.10)',iostat=istat) fmax if(istat.gt.0) call inputerror(inpc,ipoinpc,iline) ! mei(1)=nev mei(2)=ncv mei(3)=mxiter fei(1)=tol fei(2)=fmin fei(3)=fmax ! ! removing nonzero boundary conditions ! do i=1,nboun xboun(i)=0.d0 enddo ! call getnewline(inpc,textpart,istat,n,key,iline,ipol,inl, & ipoinp,inp,ipoinpc) ! return end