xref: /libCEED/tests/t401-qfunction-f.h (revision 752c3701a992135134df075f4ef18abc790b3495)
1*752c3701SJeremy L Thompson !-----------------------------------------------------------------------
2*752c3701SJeremy L Thompson       subroutine setup(ctx,q,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,&
3*752c3701SJeremy L Thompson &           u15,u16,v1,v2,v3,v4,v5,v6,v7,v8,v9,v10,v11,v12,v13,v14,v15,v16,ierr)
4*752c3701SJeremy L Thompson       real*8 ctx(1)
5*752c3701SJeremy L Thompson       real*8 u1(8)
6*752c3701SJeremy L Thompson       real*8 v1(8)
7*752c3701SJeremy L Thompson       integer q,ierr
8*752c3701SJeremy L Thompson 
9*752c3701SJeremy L Thompson       do i=1,q
10*752c3701SJeremy L Thompson         v1(i)=u1(i)
11*752c3701SJeremy L Thompson       enddo
12*752c3701SJeremy L Thompson 
13*752c3701SJeremy L Thompson       ierr=0
14*752c3701SJeremy L Thompson       end
15*752c3701SJeremy L Thompson !-----------------------------------------------------------------------
16*752c3701SJeremy L Thompson       subroutine mass(ctx,q,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,&
17*752c3701SJeremy L Thompson &           u15,u16,v1,v2,v3,v4,v5,v6,v7,v8,v9,v10,v11,v12,v13,v14,v15,v16,ierr)
18*752c3701SJeremy L Thompson       real*8 ctx(5)
19*752c3701SJeremy L Thompson       real*8 u1(8)
20*752c3701SJeremy L Thompson       real*8 u2(8)
21*752c3701SJeremy L Thompson       real*8 v1(8)
22*752c3701SJeremy L Thompson       integer q,ierr
23*752c3701SJeremy L Thompson 
24*752c3701SJeremy L Thompson       do i=1,q
25*752c3701SJeremy L Thompson         v1(i)=ctx(5)*u1(i)*u2(i)
26*752c3701SJeremy L Thompson       enddo
27*752c3701SJeremy L Thompson 
28*752c3701SJeremy L Thompson       ierr=0
29*752c3701SJeremy L Thompson       end
30*752c3701SJeremy L Thompson !-----------------------------------------------------------------------
31