abl
cvode_jtimes.h
Go to the documentation of this file.
1  subroutine fcvjtimes (v,fjv,tt,y,fy,h,ipar,rpar,work,ier)
2 c
3 c Compute Jacobian Vetor product FJV
4 c approximated by 1st-order fd quotient
5 c
6  real v(*), fjv(*), tt, y(*), fy(*), h, rpar(1), work(*)
7 
8  INCLUDE 'SIZE'
9  INCLUDE 'INPUT'
10  INCLUDE 'CVODE'
11 
12  integer*8 ipar(1)
13 
14  if (nio.eq.0.and.loglevel.gt.2)
15  $ write(6,*) 'fcvjtimes'
16 
17  ifdqj = .true.
18 
19  ! compute weighted rms norm ||v||
20  call fcvgeterrweights(work,ier)
21  sum = 0.0
22  do i = 1,cv_nlocal
23  dnorm = v(i)*work(i)
24  sum = sum + dnorm*dnorm
25  enddo
26  sum = sqrt(glsum(sum,1)/cv_nglobal)
27  sig = 1./sum
28  sig = cv_sigs * sig
29 
30  ! set FJV = f(t, y + sigs*v/||v||)
31  do i = 1,cv_nlocal
32  work(i) = y(i) + sig*v(i)
33  enddo
34  call fcvfun(tt,work,fjv,ipar,rpar,ier)
35 
36  siginv = 1./sig
37  do i = 1,cv_nlocal
38  fjv(i) = fjv(i)*siginv - fy(i)*siginv
39  enddo
40 
41  ifdqj = .false.
42  ier = 0
43 
44  return
45  end
dssum
subroutine dssum(u, nx, ny, nz)
Definition: dssum.f:34
cfill
subroutine cfill(a, b, n)
Definition: math.f:244
nvec_dssum
subroutine nvec_dssum(u, stride, n, gs_handle)
Definition: dssum.f:261
setinvm
subroutine setinvm
Definition: coef.f:1334
vlmax
real function vlmax(vec, n)
Definition: math.f:396
cv_eval_geom
subroutine cv_eval_geom
Definition: cvode_driver.f:545
makeq
subroutine makeq
Definition: makeq.f:3
sub2
subroutine sub2(a, b, n)
Definition: math.f:164
glsum
function glsum(x, n)
Definition: math.f:861
cv_upd_v
subroutine cv_upd_v
Definition: cvode_driver.f:332
cv_pstat
subroutine cv_pstat
Definition: cvode_driver.f:585
invcol3
subroutine invcol3(a, b, c, n)
Definition: math.f:98
col2
subroutine col2(a, b, n)
Definition: math.f:564
fcvfun
subroutine fcvfun(time_, y, ydot, ipar, rpar, ier)
Definition: cvode_driver.f:424
geom2
subroutine geom2
Definition: coef.f:823
col3
subroutine col3(a, b, c, n)
Definition: math.f:598
cv_setsize
subroutine cv_setsize
Definition: cvode_driver.f:3
set_convect_new
subroutine set_convect_new(cr, cs, ct, ux, uy, uz)
Definition: convect.f:846
add3
subroutine add3(a, b, c, n)
Definition: math.f:644
cv_upd_w
subroutine cv_upd_w
Definition: cvode_driver.f:360
create_comm
subroutine create_comm(inewcomm)
Definition: comm_mpi.f:440
fcvjtimes
subroutine fcvjtimes(v, fjv, tt, y, fy, h, ipar, rpar, work, ier) c c Compute Jacobian Vetor product FJV c approximated by 1st-order fd quotient c real v(*)
setdef
subroutine setdef
Definition: genxyz.f:352
cv_upd_coor
subroutine cv_upd_coor
Definition: cvode_driver.f:387
copy
subroutine copy(a, b, n)
Definition: math.f:260
cv_init
subroutine cv_init
Definition: cvode_driver.f:12
cdscal_cvode
subroutine cdscal_cvode
Definition: cvode_driver.f:21
cv_settime
subroutine cv_settime
Definition: cvode_driver.f:558
cv_rstat
subroutine cv_rstat
Definition: cvode_driver.f:621
setbd
subroutine setbd(bd, dtbd, nbd)
Definition: navier1.f:1743
cvunpack
subroutine cvunpack(w1, y) c c copy the internal cvode vector y to nek array w1 c include 'SIZE' include 'TOTAL' include 'CVODE' real w1(lx1
sumab
subroutine sumab(v, vv, vvlag, ntot, ab_, nab_)
Definition: plan4.f:526
rzero
subroutine rzero(a, n)
Definition: math.f:208
glmapm1
subroutine glmapm1
Definition: coef.f:575
dnekclock_sync
real *8 function dnekclock_sync()
Definition: comm_mpi.f:400
exitt
void exitt()
Definition: comm_mpi.f:603
vprops
subroutine vprops
Definition: vprops.f:2
geodat1
subroutine geodat1
Definition: coef.f:670
dnekclock
real *8 function dnekclock()
Definition: comm_mpi.f:392
setabbd
subroutine setabbd(ab, dtlag, nab, nbd)
Definition: navier1.f:1670
volume
subroutine volume
Definition: coef.f:1003