SPEED
MAKE_BILINEAR_MAP.f90 File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine make_bilinear_map (nodes, c_alfa11, c_alfa12, c_alfa13, c_alfa21, c_alfa22, c_alfa23, c_alfa31, c_alfa32, c_alfa33, c_beta11, c_beta12, c_beta13, c_beta21, c_beta22, c_beta23, c_beta31, c_beta32, c_beta33, c_gamma1, c_gamma2, c_gamma3, c_delta1, c_delta2, c_delta3)
 Takes values from nodes array.
 

Function/Subroutine Documentation

◆ make_bilinear_map()

subroutine make_bilinear_map ( real*8, dimension(24)  nodes,
real*8, intent(out)  c_alfa11,
real*8, intent(out)  c_alfa12,
real*8, intent(out)  c_alfa13,
real*8, intent(out)  c_alfa21,
real*8, intent(out)  c_alfa22,
real*8, intent(out)  c_alfa23,
real*8, intent(out)  c_alfa31,
real*8, intent(out)  c_alfa32,
real*8, intent(out)  c_alfa33,
real*8, intent(out)  c_beta11,
real*8, intent(out)  c_beta12,
real*8, intent(out)  c_beta13,
real*8, intent(out)  c_beta21,
real*8, intent(out)  c_beta22,
real*8, intent(out)  c_beta23,
real*8, intent(out)  c_beta31,
real*8, intent(out)  c_beta32,
real*8, intent(out)  c_beta33,
real*8, intent(out)  c_gamma1,
real*8, intent(out)  c_gamma2,
real*8, intent(out)  c_gamma3,
real*8, intent(out)  c_delta1,
real*8, intent(out)  c_delta2,
real*8, intent(out)  c_delta3 
)

Takes values from nodes array.

Author
Ilario Mazzieri
Date
September, 2013
Version
1.0
Parameters
[out]nodescostant values for the bilinear map to read
[out]c_alfa11costant values for the bilinear map
[out]c_alfa12costant values for the bilinear map
[out]c_alfa13costant values for the bilinear map
[out]c_alfa21costant values for the bilinear map
[out]c_alfa22costant values for the bilinear map
[out]c_alfa23costant values for the bilinear map
[out]c_alfa31costant values for the bilinear map
[out]c_alfa32costant values for the bilinear map
[out]c_alfa33costant values for the bilinear map
[out]c_beta11costant values for the bilinear map
[out]c_beta12costant values for the bilinear map
[out]c_beta13costant values for the bilinear map
[out]c_beta21costant values for the bilinear map
[out]c_beta22costant values for the bilinear map
[out]c_beta23costant values for the bilinear map
[out]c_beta31costant values for the bilinear map
[out]c_beta32costant values for the bilinear map
[out]c_beta33costant values for the bilinear map
[out]c_gamma1costant values for the bilinear map
[out]c_gamma2costant values for the bilinear map
[out]c_gamma3costant values for the bilinear map
[out]c_delta1costant values for the bilinear map
[out]c_delta2costant values for the bilinear map
[out]c_delta3costant values for the bilinear map

Definition at line 49 of file MAKE_BILINEAR_MAP.f90.

57
58 implicit none
59
60 real*8 :: x1,x2,x3,x4,x5,x6,x7,x8
61 real*8 :: y1,y2,y3,y4,y5,y6,y7,y8
62 real*8 :: z1,z2,z3,z4,z5,z6,z7,z8
63 real*8, intent(out) :: c_alfa11, c_alfa12, c_alfa13, c_alfa21, c_alfa22, c_alfa23, c_alfa31, c_alfa32, c_alfa33
64 real*8, intent(out) :: c_beta11, c_beta12, c_beta13, c_beta21, c_beta22, c_beta23, c_beta31, c_beta32, c_beta33
65 real*8, intent(out) :: c_gamma1, c_gamma2, c_gamma3, c_delta1, c_delta2, c_delta3
66
67 real*8, dimension(24) :: nodes
68
69
70 c_alfa11 = nodes(1)
71 c_alfa12 = nodes(2)
72 c_alfa13 = nodes(3)
73
74 c_alfa21 = nodes(4)
75 c_alfa22 = nodes(5)
76 c_alfa23 = nodes(6)
77
78 c_alfa31 = nodes(7)
79 c_alfa32 = nodes(8)
80 c_alfa33 = nodes(9)
81
82 c_beta11 = nodes(10)
83 c_beta12 = nodes(11)
84 c_beta13 = nodes(12)
85
86 c_beta21 = nodes(13)
87 c_beta22 = nodes(14)
88 c_beta23 = nodes(15)
89
90 c_beta31 = nodes(16)
91 c_beta32 = nodes(17)
92 c_beta33 = nodes(18)
93
94 c_gamma1 = nodes(19)
95 c_gamma2 = nodes(20)
96 c_gamma3 = nodes(21)
97
98 c_delta1 = nodes(22)
99 c_delta2 = nodes(23)
100 c_delta3 = nodes(24)
101
102

Referenced by make_dg_interface(), and write_file_dgfs().

Here is the caller graph for this function: