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