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

Go to the source code of this file.

Functions/Subroutines

subroutine openfilefluid (jobname)
 

Function/Subroutine Documentation

◆ openfilefluid()

subroutine openfilefluid ( character*132  jobname)
20 !
21  implicit none
22 !
23  character*132 jobname,fnfrd,fncvg
24  integer i
25 !
26 ! opening frd file
27 !
28  do i=1,132
29  if(jobname(i:i).eq.' ') exit
30  enddo
31  i=i-1
32  if(i.gt.128) then
33  write(*,*)
34  & '*ERROR in openfilefluid: input file name is too long:'
35  write(*,'(a132)') jobname(1:132)
36  write(*,*) ' exceeds 128 characters'
37  call exit(201)
38  endif
39 !
40  fnfrd=jobname(1:i)//'f.frd'
41  open(13,file=fnfrd(1:i+5),status='unknown',position='append')
42 !
43  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)