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

Go to the source code of this file.

Functions/Subroutines

subroutine writeboun (nodeboun, ndirboun, xboun, typeboun, nboun)
 

Function/Subroutine Documentation

◆ writeboun()

subroutine writeboun ( integer, dimension(*)  nodeboun,
integer, dimension(*)  ndirboun,
real*8, dimension(*)  xboun,
character*1, dimension(*)  typeboun,
integer  nboun 
)
20 !
21 ! writes an MPC to standard output (for debugging purposes)
22 !
23  implicit none
24 !
25  character*1 typeboun(*)
26  integer nodeboun(*),ndirboun(*),nboun,i
27  real*8 xboun(*)
28 !
29  write(*,*)
30  write(*,'(''SPC '')')
31  do i=1,nboun
32  write(*,'(i5,1x,i10,1x,i5,1x,e11.4,1x,a1)') i,nodeboun(i),
33  & ndirboun(i),xboun(i),typeboun(i)
34  enddo
35 !
36  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)