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

Go to the source code of this file.

Functions/Subroutines

subroutine convert2slapcol (au, ad, jq, nzs, nef, aua)
 

Function/Subroutine Documentation

◆ convert2slapcol()

subroutine convert2slapcol ( real*8, dimension(*)  au,
real*8, dimension(*)  ad,
integer, dimension(*)  jq,
integer  nzs,
integer  nef,
real*8, dimension(*)  aua 
)
26 !
27  implicit none
28 !
29  integer jq(*),nzs,nef,i,j,k
30  real*8 au(*),ad(*),aua(*)
31 !
32 ! converting the CalculiX format into the SLAP column format
33 !
34  k=nzs+nef
35 !
36  do i=nef,1,-1
37  do j=jq(i+1)-1,jq(i),-1
38  aua(k)=au(j)
39  k=k-1
40  enddo
41  aua(k)=ad(i)
42  k=k-1
43  enddo
44 !
45  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)