Author Topic: subroutine interp2d  (Read 3271 times)

fortran88

  • Jr. Member
  • **
  • Posts: 10
subroutine interp2d
« on: December 15, 2016, 07:42:33 PM »
Hello all

According to interp2d.f,
the outputs are shp(3,16,l) and jac(l).

How it can be possible?
Because the list of variables in the subroutine definition statement is like
interp2d(l, xl,ix, ndm,nel, flag). There is shp and jac
As far as I know, the variables in the list can be used to transfer information from the subroutine and into the subroutine.

thanks for reading this

FEAP_Admin

  • Administrator
  • FEAP Guru
  • *****
  • Posts: 993
Re: subroutine interp2d
« Reply #1 on: December 15, 2016, 10:37:47 PM »
Please read the full comment:
Code: [Select]
c      Outputs: Through common block /qudshp*/
c         shp(3,16,l)  - Shape functions
c         jac(l)       - Jacobian
The output is through the common block qudshp.  You can find the full contents in include/qudshp.h.