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

Go to the source code of this file.

Functions/Subroutines

subroutine nidentll (x, px, n, id)
 

Function/Subroutine Documentation

◆ nidentll()

subroutine nidentll ( integer*8, dimension(n)  x,
integer*8  px,
integer  n,
integer  id 
)
28  implicit none
29  integer n,id,n2,m
30  integer*8 x,px
31  dimension x(n)
32  id=0
33  if(n.eq.0) return
34  n2=n+1
35  do
36  m=(n2+id)/2
37  if(px.ge.x(m)) then
38  id=m
39  else
40  n2=m
41  endif
42  if((n2-id).eq.1) return
43  enddo
Hosted by OpenAircraft.com, (Michigan UAV, LLC)