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

Go to the source code of this file.

Functions/Subroutines

subroutine writebv (x, nx)
 

Function/Subroutine Documentation

◆ writebv()

subroutine writebv ( real*8, dimension(nx)  x,
integer  nx 
)
20 !
21 ! writes the buckling force factor to unit 5
22 !
23  implicit none
24 !
25  integer j,nx
26  real*8 x(nx),pi
27 !
28  pi=4.d0*datan(1.d0)
29 !
30  write(5,*)
31  write(5,*) ' B U C K L I N G F A C T O R O U T P U T'
32  write(5,*)
33  write(5,*) 'MODE NO BUCKLING'
34  write(5,*) ' FACTOR'
35  write(5,*)
36  do j=1,nx
37  write(5,'(i7,2x,e14.7)') j,x(j)
38  enddo
39 !
40  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)