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

Go to the source code of this file.

Functions/Subroutines

subroutine norm (vel, velnorm, nef)
 

Function/Subroutine Documentation

◆ norm()

subroutine norm ( real*8, dimension(nef,0:7)  vel,
real*8, dimension(0:4)  velnorm,
integer  nef 
)
20 !
21 ! calculation of the norm of all field components at
22 ! the element centers
23 !
24  implicit none
25 !
26  integer i,j,nef
27 !
28  real*8 velnorm(0:4),vel(nef,0:7)
29 !
30  do i=1,nef
31  do j=0,4
32  velnorm(j)=velnorm(j)+vel(i,j)**2
33  enddo
34  enddo
35 !
36  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)