1!
2!     CalculiX - A 3-dimensional finite element program
3!              Copyright (C) 1998-2021 Guido Dhondt
4!
5!     This program is free software; you can redistribute it and/or
6!     modify it under the terms of the GNU General Public License as
7!     published by the Free Software Foundation(version 2);
8!
9!
10!     This program is distributed in the hope that it will be useful,
11!     but WITHOUT ANY WARRANTY; without even the implied warranty of
12!     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13!     GNU General Public License for more details.
14!
15!     You should have received a copy of the GNU General Public License
16!     along with this program; if not, write to the Free Software
17!     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18!
19      subroutine writevfa(vfa,nface,nactdohinv,ielfa)
20!
21!     writing facial values
22!
23      implicit none
24!
25      integer nface,nactdohinv(*),ielfa(4,*),i,iel
26!
27      real*8 vfa(0:7,*)
28!
29      do i=1,nface
30         if(ielfa(2,i).ge.0) cycle
31         iel=ielfa(1,i)
32         iel=nactdohinv(iel)
33         write(*,*) 'writevfa ',iel,ielfa(4,i),
34     &      vfa(0,i),vfa(1,i),vfa(2,i),vfa(3,i)
35      enddo
36!
37      return
38      end
39