CalculiX  2.13
A Free Software Three-Dimensional Structural Finite Element Program
writeevcomplex.f File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine writeevcomplex (x, nx, fmin, fmax)
 

Function/Subroutine Documentation

◆ writeevcomplex()

subroutine writeevcomplex ( complex*16, dimension(nx)  x,
integer  nx,
real*8  fmin,
real*8  fmax 
)
20 !
21 ! writes the eigenvalues in the .dat file
22 !
23  implicit none
24 !
25  integer j,nx
26  real*8 pi,fmin,fmax
27  complex*16 x(nx)
28 !
29  pi=4.d0*datan(1.d0)
30 !
31  write(5,*)
32  write(5,*) ' E I G E N V A L U E O U T P U T'
33  write(5,*)
34  write(5,*) 'MODE NO FREQUENCY
35  & '
36  write(5,*) ' REAL PART IMAGINARY PART'
37  write(5,*) ' (RAD/TIME) (CYCLES/TIME) (RAD/TIME)'
38  write(5,*)
39  do j=1,nx
40  write(5,'(i7,4(2x,e14.7))') j,dreal(x(j)),
41  & dreal(x(j))/(2.d0*pi),dimag(x(j))
42  enddo
43 !
44  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)