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 writempc(ipompc,nodempc,coefmpc,labmpc,mpc)
20!
21!     writes an MPC to standard output (for debugging purposes)
22!
23      implicit none
24!
25      character*20 labmpc(*)
26      integer ipompc(*),nodempc(3,*),mpc,index,node,idir
27      real*8 coefmpc(*),coef
28!
29      write(*,*)
30      write(*,'(''MPC '',i10,1x,a20)') mpc,labmpc(mpc)
31      index=ipompc(mpc)
32      do
33         node=nodempc(1,index)
34         idir=nodempc(2,index)
35         coef=coefmpc(index)
36         write(*,'(i10,1x,i5,1x,e11.4)') node,idir,coef
37         index=nodempc(3,index)
38         if(index.eq.0) exit
39      enddo
40!
41      return
42      end
43
44