10#include "scaleFElib.h"
19 use scale_file_history,
only: &
21 file_history_set_nowdate, &
22 file_history_truncate_1d, &
23 file_history_truncate_2d, &
24 file_history_truncate_3d, &
27 file_history_set_dim, &
28 file_history_set_axis, &
61 module procedure file_history_meshfield_put1d
62 module procedure file_history_meshfield_put2d
63 module procedure file_history_meshfield_put3d
67 module procedure file_history_meshfield_in1d
68 module procedure file_history_meshfield_in2d
69 module procedure file_history_meshfield_in3d
80 private :: history_in_regvar
81 private :: set_dim_axis1d
82 private :: set_dim_axis2d
83 private :: set_dim_axis3d
84 private :: set_dim_axis2d_cubedsphere
85 private :: set_dim_axis3d_cubedsphere
92 integer,
parameter :: nzs = 1
93 character(len=8),
parameter :: zs(nzs) = (/
"model " /)
95 integer :: FILE_HISTORY_MESHFIELD_STARTDATE(6)
96 real(DP) :: FILE_HISTORY_MESHFIELD_STARTSUBSEC
98 class(MeshBase1D),
pointer :: mesh1D
99 class(MeshRectDom2D),
pointer :: mesh2D
100 class(MeshCubeDom3D),
pointer :: mesh3D
101 class(MeshCubedSphereDom2D),
pointer :: meshCubedSphere2D
102 class(MeshCubedSphereDom3D),
pointer :: meshCubedSphere3D
104 integer :: dims1D_size(1)
105 integer :: dims2D_size(2)
106 integer :: dims3D_size(3,nzs)
108 logical,
private :: FILE_HISTORY_FILEMESHFILED_DISABLE = .true.
116 mesh1D_, mesh2D_, mesh3D_, &
117 meshcubedsphere2D_, meshcubedsphere3D_ )
119 use scale_file_h,
only: &
121 use scale_prc,
only: &
125 use scale_time,
only: &
131 use scale_calendar,
only: &
135 class(
meshbase1d),
intent(in),
target,
optional :: mesh1d_
136 class(
meshrectdom2d),
intent(in),
target,
optional :: mesh2d_
137 class(
meshcubedom3d),
intent(in),
target,
optional :: mesh3d_
141 character(len=H_MID) :: file_history_meshfiled_h_title =
'SCALE-FEM FILE_HISTORY_MESHFIELD'
142 character(len=H_MID) :: file_history_meshfield_t_since
145 character(len=FILE_HSHORT) :: calendar
146 real(dp) :: start_daysec
149 file_history_meshfield_startdate(:) = time_nowdate
150 file_history_meshfield_startsubsec = time_nowsubsec
152 start_daysec = time_startdaysec
153 if ( time_nowdate(1) > 0 )
then
154 write(file_history_meshfield_t_since,
'(I4.4,5(A1,I2.2))') time_nowdate(1), &
155 '-', time_nowdate(2), &
156 '-', time_nowdate(3), &
157 ' ', time_nowdate(4), &
158 ':', time_nowdate(5), &
160 start_daysec = time_nowsubsec
162 file_history_meshfield_t_since =
''
166 call calendar_get_name( calendar )
168 call file_history_setup( file_history_meshfiled_h_title, &
169 h_source, h_institute, &
170 start_daysec, time_dtsec, &
171 time_since = file_history_meshfield_t_since, &
172 calendar = calendar, &
173 default_zcoord =
'model', &
174 myrank = prc_myrank )
176 call file_history_set_nowdate( time_nowdate, time_nowsubsec, time_nowstep )
180 nullify( mesh1d, mesh2d, mesh3d )
181 nullify( meshcubedsphere2d, meshcubedsphere3d )
183 if (
present(mesh1d_) )
then
185 call set_dim_axis1d()
186 else if (
present(mesh2d_) )
then
188 call set_dim_axis2d()
189 else if (
present(mesh3d_) )
then
191 mesh2d => mesh3d%mesh2D
192 call set_dim_axis3d()
193 else if (
present(meshcubedsphere2d_) )
then
194 meshcubedsphere2d => meshcubedsphere2d_
195 call set_dim_axis2d_cubedsphere()
196 else if (
present(meshcubedsphere3d_) )
then
197 meshcubedsphere3d => meshcubedsphere3d_
198 meshcubedsphere2d => meshcubedsphere3d%mesh2D
199 call set_dim_axis3d_cubedsphere()
201 log_error(
"FILE_HISTORY_meshfield_setup",*)
"Any mesh (mesh1d/2d/3d) are not specified."
205 file_history_filemeshfiled_disable = .false.
215 call file_history_write
224 call file_history_finalize()
231 subroutine file_history_meshfield_put1d(hstid, field1d)
235 integer,
intent(in) :: hstid
238 real(RP),
allocatable :: buf(:)
241 allocate( buf(dims1d_size(1)) )
244 call file_history_put(hstid, buf)
247 end subroutine file_history_meshfield_put1d
250 subroutine file_history_meshfield_in1d( field1d, desc, standard_name )
253 character(len=*),
intent(in) :: desc
254 character(len=*),
intent(in),
optional :: standard_name
260 call history_in_regvar( hstid, do_put, &
261 field1d, desc, 1, standard_name,
'XYZ' )
266 end subroutine file_history_meshfield_in1d
271 subroutine file_history_meshfield_put2d(hstid, field2d)
277 integer,
intent(in) :: hstid
280 real(RP),
allocatable :: buf(:,:)
283 allocate( buf(dims2d_size(1),dims2d_size(2)) )
285 if (
associated(mesh2d) )
then
287 else if (
associated(meshcubedsphere2d) )
then
289 meshcubedsphere2d, field2d, buf(:,:) )
291 call file_history_put(hstid, buf)
294 end subroutine file_history_meshfield_put2d
297 subroutine file_history_meshfield_in2d( field2d, desc, standard_name )
300 character(len=*),
intent(in) :: desc
301 character(len=*),
intent(in),
optional :: standard_name
307 call history_in_regvar( hstid, do_put, &
308 field2d, desc, 2, standard_name,
'XY' )
313 end subroutine file_history_meshfield_in2d
318 subroutine file_history_meshfield_put3d(hstid, field3d)
324 integer,
intent(in) :: hstid
327 real(RP),
allocatable :: buf(:,:,:)
331 allocate( buf(dims3d_size(1,1),dims3d_size(2,1),dims3d_size(3,1)) )
332 if (
associated(mesh3d) )
then
334 else if (
associated(meshcubedsphere3d) )
then
336 meshcubedsphere3d, field3d, buf(:,:,:) )
338 call file_history_put(hstid, buf)
341 end subroutine file_history_meshfield_put3d
344 subroutine file_history_meshfield_in3d( field3d, desc, standard_name )
347 character(len=*),
intent(in) :: desc
348 character(len=*),
intent(in),
optional :: standard_name
354 call history_in_regvar( hstid, do_put, &
355 field3d, desc, 3, standard_name,
'XYZ' )
360 end subroutine file_history_meshfield_in3d
365 subroutine history_in_regvar( hstid, do_put, &
366 field, desc, ndim, standard_name, dim_type )
368 use scale_file_history,
only: &
374 integer,
intent(out) :: hstid
375 logical,
intent(out) :: do_put
377 character(len=*),
intent(in) :: desc
378 integer,
intent(in) :: ndim
379 character(len=*),
intent(in),
optional :: standard_name
380 character(len=*),
intent(in),
optional :: dim_type
382 logical,
parameter :: fill_halo = .false.
388 if ( file_history_filemeshfiled_disable )
return
391 call file_history_reg( field%varname, desc, field%unit, &
393 standard_name=standard_name, &
396 fill_halo=fill_halo )
398 if ( hstid < 0 )
return
401 call file_history_query( hstid, do_put )
404 end subroutine history_in_regvar
407 subroutine set_dim_axis1d()
419 real(RP),
allocatable :: x(:)
420 integer :: start(1,1), count(1,1)
421 character(len=H_SHORT) :: dims(1,1)
428 dims1d_size(1) = dimsinfo(dimtype_x)%size
429 allocate( x(dims1d_size(1)) )
435 ndim = dimsinfo(n)%ndim
436 dims(1:ndim,1) = dimsinfo(n)%dims(1:ndim)
437 count(1:ndim,1) = dimsinfo(n)%count(1:ndim)
438 call file_history_set_dim ( dimsinfo(n)%type, ndim, 1, dims(1:ndim,:), zs(:), start(1:ndim,:), count(1:ndim,:))
441 call file_history_set_axis( dimsinfo(dimtype_x)%name, dimsinfo(dimtype_x)%desc, &
442 dimsinfo(dimtype_x)%unit, dimsinfo(dimtype_x)%name, x(:))
445 end subroutine set_dim_axis1d
448 subroutine set_dim_axis2d()
461 real(RP),
allocatable :: x(:), y(:)
462 integer :: start(2,1), count(2,1)
463 character(len=H_SHORT) :: dims(2,1)
470 dims2d_size(1) = dimsinfo(dimtype_x)%size
471 dims2d_size(2) = dimsinfo(dimtype_y)%size
472 allocate( x(dims2d_size(1)), y(dims2d_size(2)) )
479 ndim = dimsinfo(n)%ndim
480 dims(1:ndim,1) = dimsinfo(n)%dims(1:ndim)
481 count(1:ndim,1) = dimsinfo(n)%count(1:ndim)
482 call file_history_set_dim ( dimsinfo(n)%type, ndim, 1, dims(1:ndim,:), zs(:), start(1:ndim,:), count(1:ndim,:))
485 call file_history_set_axis( dimsinfo(dimtype_x)%name, dimsinfo(dimtype_x)%desc, dimsinfo(dimtype_x)%unit, dimsinfo(dimtype_x)%name, x(:))
486 call file_history_set_axis( dimsinfo(dimtype_y)%name, dimsinfo(dimtype_y)%desc, dimsinfo(dimtype_y)%unit, dimsinfo(dimtype_y)%name, y(:))
489 end subroutine set_dim_axis2d
492 subroutine set_dim_axis3d()
506 real(RP),
allocatable :: x(:), y(:), z(:)
507 integer :: start(3,1), count(3,1)
508 character(len=H_SHORT) :: dims(3,1)
515 dims2d_size(1) = dimsinfo(dimtype_x)%size
516 dims2d_size(2) = dimsinfo(dimtype_y)%size
517 dims3d_size(1,1) = dimsinfo(dimtype_x)%size
518 dims3d_size(2,1) = dimsinfo(dimtype_y)%size
519 dims3d_size(3,1) = dimsinfo(dimtype_z)%size
520 allocate( x(dims3d_size(1,1)), y(dims3d_size(2,1)), z(dims3d_size(3,1)) )
526 ndim = dimsinfo(n)%ndim
527 dims(1:ndim,1) = dimsinfo(n)%dims(1:ndim)
528 count(1:ndim,1) = dimsinfo(n)%count(1:ndim)
529 call file_history_set_dim ( dimsinfo(n)%type, ndim, 1, dims(1:ndim,:), zs(:), start(1:ndim,:), count(1:ndim,:))
532 call file_history_set_axis( dimsinfo(dimtype_x)%name, dimsinfo(dimtype_x)%desc, dimsinfo(dimtype_x)%unit, dimsinfo(dimtype_x)%name, x(:) )
533 call file_history_set_axis( dimsinfo(dimtype_y)%name, dimsinfo(dimtype_y)%desc, dimsinfo(dimtype_y)%unit, dimsinfo(dimtype_y)%name, y(:) )
534 call file_history_set_axis( dimsinfo(dimtype_z)%name, dimsinfo(dimtype_z)%desc, dimsinfo(dimtype_z)%unit, dimsinfo(dimtype_z)%name, z(:), &
535 down=dimsinfo(dimtype_z)%positive_down(1) )
538 end subroutine set_dim_axis3d
541 subroutine set_dim_axis2d_cubedsphere()
554 real(RP),
allocatable :: x(:), y(:)
555 integer :: start(2,1), count(2,1)
556 character(len=H_SHORT) :: dims(2,1)
563 dims2d_size(1) = dimsinfo(dimtype_x)%size
564 dims2d_size(2) = dimsinfo(dimtype_y)%size
565 allocate( x(dims2d_size(1)), y(dims2d_size(2)) )
573 ndim = dimsinfo(n)%ndim
574 dims(1:ndim,1) = dimsinfo(n)%dims(1:ndim)
575 count(1:ndim,1) = dimsinfo(n)%count(1:ndim)
576 call file_history_set_dim ( dimsinfo(n)%type, ndim, 1, dims(1:ndim,:), zs(:), start(1:ndim,:), count(1:ndim,:))
579 call file_history_set_axis( dimsinfo(dimtype_x)%name, dimsinfo(dimtype_x)%desc, dimsinfo(dimtype_x)%unit, dimsinfo(dimtype_x)%name, x(:))
580 call file_history_set_axis( dimsinfo(dimtype_y)%name, dimsinfo(dimtype_y)%desc, dimsinfo(dimtype_y)%unit, dimsinfo(dimtype_y)%name, y(:))
583 end subroutine set_dim_axis2d_cubedsphere
586 subroutine set_dim_axis3d_cubedsphere()
600 real(RP),
allocatable :: x(:), y(:), z(:)
601 integer :: start(3,1), count(3,1)
602 character(len=H_SHORT) :: dims(3,1)
609 dims2d_size(1) = dimsinfo(dimtype_x)%size
610 dims2d_size(2) = dimsinfo(dimtype_y)%size
611 dims3d_size(1,1) = dimsinfo(dimtype_x)%size
612 dims3d_size(2,1) = dimsinfo(dimtype_y)%size
613 dims3d_size(3,1) = dimsinfo(dimtype_z)%size
614 allocate( x(dims3d_size(1,1)), y(dims3d_size(2,1)), z(dims3d_size(3,1)) )
620 ndim = dimsinfo(n)%ndim
621 dims(1:ndim,1) = dimsinfo(n)%dims(1:ndim)
622 count(1:ndim,1) = dimsinfo(n)%count(1:ndim)
623 call file_history_set_dim ( dimsinfo(n)%type, ndim, 1, dims(1:ndim,:), zs(:), start(1:ndim,:), count(1:ndim,:))
626 call file_history_set_axis( dimsinfo(dimtype_x)%name, dimsinfo(dimtype_x)%desc, dimsinfo(dimtype_x)%unit, dimsinfo(dimtype_x)%name, x(:) )
627 call file_history_set_axis( dimsinfo(dimtype_y)%name, dimsinfo(dimtype_y)%desc, dimsinfo(dimtype_y)%unit, dimsinfo(dimtype_y)%name, y(:) )
628 call file_history_set_axis( dimsinfo(dimtype_z)%name, dimsinfo(dimtype_z)%desc, dimsinfo(dimtype_z)%unit, dimsinfo(dimtype_z)%name, z(:), &
629 down=dimsinfo(dimtype_z)%positive_down(1) )
632 end subroutine set_dim_axis3d_cubedsphere
module FElib / Element / Base
module FElib / File / Common
subroutine, public file_common_meshfield_get_axis1d(mesh1d, dimsinfo, x, force_uniform_grid)
subroutine, public file_common_meshfield_get_axis3d(mesh3d, dimsinfo, x, y, z, force_uniform_grid)
subroutine, public file_common_meshfield_put_field3d_cubedsphere_cartesbuf(mesh3d, field3d, buf)
subroutine, public file_common_meshfield_put_field2d_cubedsphere_cartesbuf(mesh2d, field2d, buf)
subroutine, public file_common_meshfield_put_field2d_cartesbuf(mesh2d, field2d, buf, force_uniform_grid)
subroutine, public file_common_meshfield_get_dims1d(mesh1d, dimsinfo)
subroutine, public file_common_meshfield_put_field1d_cartesbuf(mesh1d, field1d, buf, force_uniform_grid)
subroutine, public file_common_meshfield_get_dims3d(mesh3d, dimsinfo)
subroutine, public file_common_meshfield_get_dims2d(mesh2d, dimsinfo)
subroutine, public file_common_meshfield_get_axis2d(mesh2d, dimsinfo, x, y, force_uniform_grid)
subroutine, public file_common_meshfield_put_field3d_cartesbuf(mesh3d, field3d, buf, force_uniform_grid)
module FElib / File / History
subroutine, public file_history_meshfield_setup(mesh1d_, mesh2d_, mesh3d_, meshcubedsphere2d_, meshcubedsphere3d_)
subroutine, public file_history_meshfield_write()
subroutine, public file_history_meshfield_finalize()
module FElib / Mesh / Local 1D
module FElib / Mesh / Local 2D
module FElib / Mesh / Local 3D
module FElib / Mesh / Base 1D
integer, public meshbase1d_dimtype_num
integer, public meshbase1d_dimtypeid_x
module FElib / Mesh / Base 2D
integer, public meshbase2d_dimtypeid_x
integer, public meshbase2d_dimtype_num
integer, public meshbase2d_dimtypeid_y
module FElib / Mesh / Base 3D
integer, public meshbase3d_dimtypeid_y
integer, public meshbase3d_dimtypeid_z
integer, public meshbase3d_dimtype_num
integer, public meshbase3d_dimtypeid_x
module FElib / Mesh / Cubic 3D domain
module FElib / Mesh / Cubed-sphere 2D domain
module FElib / Mesh / Cubed-sphere 3D domain
module FElib / Mesh / Rectangle 2D domain
module FElib / Data / base