FE-Project
Loading...
Searching...
No Matches
scale_file_monitor_meshfield.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
10!-------------------------------------------------------------------------------
11#include "scaleFElib.h"
13 !-----------------------------------------------------------------------------
14 !
15 !++ Used modules
16 !
17 use scale_precision
18 use scale_io
19 use scale_prof
20 use scale_monitor, only: monitor_set_dim
21 use scale_monitor, only: monitor_put
22
27
28 use scale_monitor, only: &
29 file_monitor_meshfield_setup => monitor_setup, &
30 file_monitor_meshfield_reg => monitor_reg, &
31 file_monitor_meshfield_write => monitor_write, &
32 file_monitor_meshfield_final => monitor_finalize
33
34
35 !-----------------------------------------------------------------------------
36 implicit none
37 private
38 !-----------------------------------------------------------------------------
39 !
40 !++ Public type & procedures
41 !
42 !-----------------------------------------------------------------------------
43
44 public :: file_monitor_meshfield_setup
45
47 module procedure file_monitor_meshfield_set_dim2d
48 module procedure file_monitor_meshfield_set_dim3d
49 end interface
51
52 public :: file_monitor_meshfield_reg
53
55 module procedure file_monitor_meshfield_put2d
56 module procedure file_monitor_meshfield_put3d
57 end interface
59
60 public :: file_monitor_meshfield_write
61 public :: file_monitor_meshfield_final
62
63
64 !-----------------------------------------------------------------------------
65 !
66 !++ Public parameters & variables
67 !
68 !-----------------------------------------------------------------------------
69 !
70 !++ Private procedures
71 !
72
73contains
74
75!OCL SERIAL
76 subroutine file_monitor_meshfield_set_dim2d( mesh2D, dim_type )
77 implicit none
78
79 class(meshbase2d), intent(in) :: mesh2D
80 character(*), intent(in) :: dim_type
81
82 real(RP) :: area(1,1)
83 real(RP) :: total_area, total_area_lc
84
85 integer :: n
86 integer :: ke
87 !---------------------------------------------------------------------------
88
89 total_area = 0.0_rp
90 do n=1, mesh2d%LOCAL_MESH_NUM
91 total_area = total_area + cal_total_lc( mesh2d%lcmesh_list(n) )
92 end do
93 area(1,1) = 1.0_rp
94
95 call monitor_set_dim( 1, 1, 1, 1, 1, 1, 1, 1, 1, &
96 dim_type, 2, area=area(:,:), total_area=total_area )
97
98 return
99 end subroutine file_monitor_meshfield_set_dim2d
100
101!OCL SERIAL
102 subroutine file_monitor_meshfield_set_dim3d( mesh3D, dim_type )
103 implicit none
104
105 class(meshbase3d), intent(in) :: mesh3D
106 character(*), intent(in) :: dim_type
107
108 real(RP) :: area(1,1)
109 real(RP) :: total_area, total_area_lc
110
111 integer :: n
112 integer :: ke
113 !---------------------------------------------------------------------------
114
115 total_area = 0.0_rp
116 do n=1, mesh3d%LOCAL_MESH_NUM
117 total_area = total_area + cal_total_lc( mesh3d%lcmesh_list(n) )
118 end do
119 area(1,1) = 1.0_rp
120
121 call monitor_set_dim( 1, 1, 1, 1, 1, 1, 1, 1, 1, &
122 dim_type, 2, area=area(:,:), total_area=total_area )
123
124 return
125 end subroutine file_monitor_meshfield_set_dim3d
126
127!OCL SERIAL
128 subroutine file_monitor_meshfield_put2d( itemid, field )
129 implicit none
130
131 class(meshfield2d), intent(in) :: field
132 integer, intent(in) :: itemid
133
134 real(RP) :: total_lc(1,1)
135 integer :: n
136 !---------------------------------------------------------------------------
137
138 if ( itemid <= 0 ) return
139
140 total_lc(1,1) = 0.0_rp
141 do n=1, field%mesh%LOCAL_MESH_NUM
142 total_lc(1,1) = total_lc(1,1) &
143 + cal_total_lc( field%mesh%lcmesh_list(n), field%local(n)%val )
144 end do
145 call monitor_put( itemid, total_lc(:,:) )
146
147 return
148 end subroutine file_monitor_meshfield_put2d
149
150!OCL SERIAL
151 subroutine file_monitor_meshfield_put3d( itemid, field )
152 implicit none
153
154 class(meshfield3d), intent(in) :: field
155 integer, intent(in) :: itemid
156
157 real(RP) :: total_lc(1,1)
158 integer :: n
159 !---------------------------------------------------------------------------
160
161 if ( itemid <= 0 ) return
162
163 total_lc(1,1) = 0.0_rp
164 do n=1, field%mesh%LOCAL_MESH_NUM
165 total_lc(1,1) = total_lc(1,1) &
166 + cal_total_lc( field%mesh%lcmesh_list(n), field%local(n)%val )
167 end do
168 call monitor_put( itemid, total_lc(:,:) )
169
170 return
171 end subroutine file_monitor_meshfield_put3d
172
173!-- private----------------------
174
175!OCL SERIAL
176 function cal_total_lc( lcmesh, field_val ) result(total)
179 implicit none
180
181 class(localmeshbase), intent(in) :: lcmesh
182 real(RP), intent(in), optional :: field_val(lcmesh%refElem%Np,lcmesh%NeA)
183 real(RP) :: total
184
185 class(elementbase), pointer :: elem
186 integer :: ke
187 !---------------------------------------------------------------------------
188
189 total = 0.0_rp
190 elem => lcmesh%refElem
191
192 if ( present(field_val) ) then
193 !$omp parallel do reduction(+:total)
194 do ke=lcmesh%NeS, lcmesh%NeE
195 total = total &
196 + sum( elem%IntWeight_lgl(:) * lcmesh%J(:,ke) * lcmesh%Gsqrt(:,ke) * field_val(:,ke) )
197 end do
198 else
199 !$omp parallel do reduction(+:total)
200 do ke=lcmesh%NeS, lcmesh%NeE
201 total = total + sum( elem%IntWeight_lgl(:) * lcmesh%J(:,ke) * lcmesh%Gsqrt(:,ke) )
202 end do
203 end if
204
205 return
206 end function cal_total_lc
207
module FElib / Element / Base
module FElib / Mesh / Local, Base
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Data / base