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

Go to the source code of this file.

Functions/Subroutines

subroutine writedesi (norien, orname)
 

Function/Subroutine Documentation

◆ writedesi()

subroutine writedesi ( integer  norien,
character*80, dimension(*)  orname 
)
20 !
21 ! writes the orientation design variables in the .dat file
22 !
23  implicit none
24 !
25  character*80 orname(*)
26  integer j,norien
27 !
28  write(5,*)
29  write(5,*) ' D E S I G N V A R I A B L E S'
30  write(5,*)
31  write(5,'(a8,1x,a11,62x,a15)') 'VARIABLE','ORIENTATION',
32  & 'ROTATION VECTOR'
33  write(5,*)
34 !
35  do j=1,norien
36  write(5,'(i5,4x,a80,1x,a5)') (j-1)*3+1,orname(j)(1:80),'Rx '
37  write(5,'(i5,4x,a80,1x,a5)') (j-1)*3+2,orname(j)(1:80),'Ry '
38  write(5,'(i5,4x,a80,1x,a5)') (j-1)*3+3,orname(j)(1:80),'Rz '
39  enddo
40 !
41  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)