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

Go to the source code of this file.

Functions/Subroutines

subroutine calcvel (ne, nactdoh, vel, bv, neq, nef)
 

Function/Subroutine Documentation

◆ calcvel()

subroutine calcvel ( integer  ne,
integer, dimension(*)  nactdoh,
real*8, dimension(nef,0:7)  vel,
real*8, dimension(neq,3)  bv,
integer  neq,
integer  nef 
)
20 !
21 ! stores the velocities into field vel
22 !
23  implicit none
24 !
25  integer ne,neq,nactdoh(*),i,j,nef
26 !
27  real*8 vel(nef,0:7),bv(neq,3)
28 !
29  do i=1,ne
30  do j=1,3
31  vel(i,j)=bv(i,j)
32  enddo
33 c write(*,*) 'calcvel ',i,(vel(i,j),j=1,3)
34  enddo
35 !
36  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)