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

Go to the source code of this file.

Functions/Subroutines

subroutine writeevcscomplex (x, nx, nm, fmin, fmax)
 

Function/Subroutine Documentation

◆ writeevcscomplex()

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