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

Go to the source code of this file.

Functions/Subroutines

subroutine msolve_struct (n, r, z, nelt, ia, ja, a, isym, rwork, iwork)
 

Function/Subroutine Documentation

◆ msolve_struct()

subroutine msolve_struct ( integer  n,
real*8, dimension(*)  r,
real*8, dimension(*)  z,
integer  nelt,
integer, dimension(*)  ia,
integer, dimension(*)  ja,
real*8, dimension(*)  a,
integer  isym,
real*8, dimension(*)  rwork,
integer, dimension(*)  iwork 
)
22 !
23  implicit none
24 !
25  integer n,nelt,ia(*),ja(*),isym,iwork(*),i,nd
26 !
27  real*8 r(*),z(*),a(*),rwork(*)
28 !
29 c$omp parallel default(none)
30 c$omp& shared(n,z,r,rwork)
31 c$omp& private(i)
32 c$omp do
33  do i=1,n
34  z(i)=r(i)*rwork(i)
35  enddo
36 c$omp end do
37 c$omp end parallel
38 !
39  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)