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

Go to the source code of this file.

Functions/Subroutines

subroutine preconvert2slapcol (irow, ia, jq, ja, nzs, nef)
 

Function/Subroutine Documentation

◆ preconvert2slapcol()

subroutine preconvert2slapcol ( integer, dimension(*)  irow,
integer, dimension(*)  ia,
integer, dimension(*)  jq,
integer, dimension(*)  ja,
integer  nzs,
integer  nef 
)
26 !
27  implicit none
28 !
29  integer irow(*),ia(*),jq(*),ja(*),nzs,nef,i,j,k
30 !
31 ! converting the CalculiX format into the SLAP column format
32 !
33  k=nzs+nef
34 !
35  do i=nef,1,-1
36  do j=jq(i+1)-1,jq(i),-1
37  ia(k)=irow(j)
38  k=k-1
39  enddo
40  ia(k)=i
41  k=k-1
42  enddo
43 !
44  ja(1)=1
45  do i=2,nef+1
46  ja(i)=jq(i)+i-1
47  enddo
48 !
49  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)