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

Go to the source code of this file.

Functions/Subroutines

subroutine calccvfa (nface, vfa, shcon, nshcon, ielmat, ntmat_, mi, ielfa, cvfa, physcon)
 

Function/Subroutine Documentation

◆ calccvfa()

subroutine calccvfa ( integer  nface,
real*8, dimension(0:7,*)  vfa,
real*8, dimension(0:3,ntmat_,*)  shcon,
integer, dimension(2,*)  nshcon,
integer, dimension(mi(3),*)  ielmat,
integer  ntmat_,
integer, dimension(*)  mi,
integer, dimension(4,*)  ielfa,
real*8, dimension(*)  cvfa,
real*8, dimension(*)  physcon 
)
21 !
22 ! calculation of the secant heat capacity at constant pressure/volume
23 ! at the face centers (incompressible media)
24 !
25  implicit none
26 !
27  integer nface,i,nshcon(2,*),imat,ntmat_,mi(*),
28  & ielmat(mi(3),*),ielfa(4,*)
29 !
30  real*8 t1l,vfa(0:7,*),cp,shcon(0:3,ntmat_,*),cvfa(*),physcon(*)
31 !
32  do i=1,nface
33  t1l=vfa(0,i)
34 !
35 ! take the material of the first adjacent element
36 !
37  imat=ielmat(1,ielfa(1,i))
38  call materialdata_cp_sec(imat,ntmat_,t1l,shcon,nshcon,cp,
39  & physcon)
40  cvfa(i)=cp
41  enddo
42 !
43  return
subroutine materialdata_cp_sec(imat, ntmat_, t1l, shcon, nshcon, cp, physcon)
Definition: materialdata_cp_sec.f:20
Hosted by OpenAircraft.com, (Michigan UAV, LLC)