11#include "scaleFElib.h"
20 use scale_monitor,
only: monitor_set_dim
21 use scale_monitor,
only: monitor_put
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
44 public :: file_monitor_meshfield_setup
47 module procedure file_monitor_meshfield_set_dim2d
48 module procedure file_monitor_meshfield_set_dim3d
52 public :: file_monitor_meshfield_reg
55 module procedure file_monitor_meshfield_put2d
56 module procedure file_monitor_meshfield_put3d
60 public :: file_monitor_meshfield_write
61 public :: file_monitor_meshfield_final
76 subroutine file_monitor_meshfield_set_dim2d( mesh2D, dim_type )
80 character(*),
intent(in) :: dim_type
83 real(RP) :: total_area, total_area_lc
90 do n=1, mesh2d%LOCAL_MESH_NUM
91 total_area = total_area + cal_total_lc( mesh2d%lcmesh_list(n) )
95 call monitor_set_dim( 1, 1, 1, 1, 1, 1, 1, 1, 1, &
96 dim_type, 2, area=area(:,:), total_area=total_area )
99 end subroutine file_monitor_meshfield_set_dim2d
102 subroutine file_monitor_meshfield_set_dim3d( mesh3D, dim_type )
106 character(*),
intent(in) :: dim_type
108 real(RP) :: area(1,1)
109 real(RP) :: total_area, total_area_lc
116 do n=1, mesh3d%LOCAL_MESH_NUM
117 total_area = total_area + cal_total_lc( mesh3d%lcmesh_list(n) )
121 call monitor_set_dim( 1, 1, 1, 1, 1, 1, 1, 1, 1, &
122 dim_type, 2, area=area(:,:), total_area=total_area )
125 end subroutine file_monitor_meshfield_set_dim3d
128 subroutine file_monitor_meshfield_put2d( itemid, field )
132 integer,
intent(in) :: itemid
134 real(RP) :: total_lc(1,1)
138 if ( itemid <= 0 )
return
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 )
145 call monitor_put( itemid, total_lc(:,:) )
148 end subroutine file_monitor_meshfield_put2d
151 subroutine file_monitor_meshfield_put3d( itemid, field )
155 integer,
intent(in) :: itemid
157 real(RP) :: total_lc(1,1)
161 if ( itemid <= 0 )
return
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 )
168 call monitor_put( itemid, total_lc(:,:) )
171 end subroutine file_monitor_meshfield_put3d
176 function cal_total_lc( lcmesh, field_val )
result(total)
182 real(RP),
intent(in),
optional :: field_val(lcmesh%refElem%Np,lcmesh%NeA)
190 elem => lcmesh%refElem
192 if (
present(field_val) )
then
194 do ke=lcmesh%NeS, lcmesh%NeE
196 + sum( elem%IntWeight_lgl(:) * lcmesh%J(:,ke) * lcmesh%Gsqrt(:,ke) * field_val(:,ke) )
200 do ke=lcmesh%NeS, lcmesh%NeE
201 total = total + sum( elem%IntWeight_lgl(:) * lcmesh%J(:,ke) * lcmesh%Gsqrt(:,ke) )
206 end function cal_total_lc
module FElib / Element / Base
module FElib / File / Monitor
module FElib / Mesh / Local, Base
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Data / base