ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
b_extrp.f
Go to the documentation of this file.
1  subroutine b_extrp(x0,X1,X2,X3, j1,j2,j3,j,yarr,jerr)
2  real*8 yarr(*),u0,u1,u2,u3,x0,x1,x2,x3
3 c include 'double.inc'
4  include 'dim.inc'
5  integer j,jerr,j1,j2,j3
6  jerr=0
7  u1 =yarr(j1)
8  u2 =yarr(j2)
9  u3 =yarr(j3)
10  call extrp2(x0,u0, x1,x2,x3, u1,u2,u3)
11  if(j.gt.nrp.or.j.lt.1)then
12  write(*,*) 'Equil: in b_extrp j = ', j,' out of range 1 <',j,' < ',nrp
13  jerr=1
14  return
15  endif
16  yarr(j)=u0
17  return
18  end
19 
20 
subroutine extrp2(X, F, X1, X2, X3, F1, F2, F3)
Definition: com_sub.f:719
subroutine b_extrp(x0, X1, X2, X3, j1, j2, j3, j, yarr, jerr)
Definition: b_extrp.f:1