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

Go to the source code of this file.

Functions/Subroutines

subroutine sensitivity_glob (dgdx, dgdxglob, nobject, ndesi, nodedesi, nk)
 

Function/Subroutine Documentation

◆ sensitivity_glob()

subroutine sensitivity_glob ( real*8, dimension(ndesi,nobject)  dgdx,
real*8, dimension(2,nk,nobject)  dgdxglob,
integer  nobject,
integer  ndesi,
integer, dimension(*)  nodedesi,
integer  nk 
)
21 !
22 ! prepares the sensitivities for the output in the frd-file
23 !
24  implicit none
25 !
26  integer nobject,ndesi,nodedesi(*),nk,
27  & iobject,node,idesvar
28 !
29  real*8 dgdx(ndesi,nobject),dgdxglob(2,nk,nobject)
30 !
31 ! copy the sensitivities in a global node vector
32 !
33  do idesvar=1,ndesi
34  node=nodedesi(idesvar)
35  do iobject=1,nobject
36  dgdxglob(1,node,iobject)=dgdx(idesvar,iobject)
37  enddo
38  enddo
39 !
40  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)