1!
2!     CalculiX - A 3-dimensional finite element program
3!              Copyright (C) 1998-2021 Guido Dhondt
4!
5!     This program is free software; you can redistribute it and/or
6!     modify it under the terms of the GNU General Public License as
7!     published by the Free Software Foundation(version 2);
8!
9!
10!     This program is distributed in the hope that it will be useful,
11!     but WITHOUT ANY WARRANTY; without even the implied warranty of
12!     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13!     GNU General Public License for more details.
14!
15!     You should have received a copy of the GNU General Public License
16!     along with this program; if not, write to the Free Software
17!     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18!
19      subroutine writebv(x,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
41      end
42
43