FE-Project
Loading...
Searching...
No Matches
scale_file_history_meshfield.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
9!-------------------------------------------------------------------------------
10#include "scaleFElib.h"
12 !-----------------------------------------------------------------------------
13 !
14 !++ Used modules
15 !
16 use scale_precision
17 use scale_io
18
19 use scale_file_history, only: &
20 file_history_setup, &
21 file_history_set_nowdate, &
22 file_history_truncate_1d, &
23 file_history_truncate_2d, &
24 file_history_truncate_3d, &
25 file_history_put, &
26 file_history_write, &
27 file_history_set_dim, &
28 file_history_set_axis, &
29 file_history_finalize
30
42
43 use scale_meshfield_base, only: &
46
47 !-----------------------------------------------------------------------------
48 implicit none
49 private
50 !-----------------------------------------------------------------------------
51 !
52 !++ Public procedures
53 !
59
61 module procedure file_history_meshfield_put1d
62 module procedure file_history_meshfield_put2d
63 module procedure file_history_meshfield_put3d
64 end interface
65
67 module procedure file_history_meshfield_in1d
68 module procedure file_history_meshfield_in2d
69 module procedure file_history_meshfield_in3d
70 end interface
71
72 !-----------------------------------------------------------------------------
73 !
74 !++ Public parameters & variables
75 !
76 !-----------------------------------------------------------------------------
77 !
78 !++ Private procedures
79 !
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
86
87 !-----------------------------------------------------------------------------
88 !
89 !++ Private variables
90 !
91 !-------------------
92 integer, parameter :: nzs = 1
93 character(len=8), parameter :: zs(nzs) = (/ "model " /)
94
95 integer :: FILE_HISTORY_MESHFIELD_STARTDATE(6)
96 real(DP) :: FILE_HISTORY_MESHFIELD_STARTSUBSEC
97
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
103
104 integer :: dims1D_size(1)
105 integer :: dims2D_size(2)
106 integer :: dims3D_size(3,nzs)
107
108 logical, private :: FILE_HISTORY_FILEMESHFILED_DISABLE = .true.
109
110contains
111
112!----------------
113
114!OCL SERIAL
116 mesh1D_, mesh2D_, mesh3D_, &
117 meshcubedsphere2D_, meshcubedsphere3D_ )
118
119 use scale_file_h, only: &
120 file_hshort
121 use scale_prc, only: &
122 prc_masterrank, &
123 prc_myrank, &
124 prc_abort
125 use scale_time, only: &
126 time_nowdate, &
127 time_nowsubsec, &
128 time_startdaysec, &
129 time_dtsec, &
130 time_nowstep
131 use scale_calendar, only: &
132 calendar_get_name
133 implicit none
134
135 class(meshbase1d), intent(in), target, optional :: mesh1d_
136 class(meshrectdom2d), intent(in), target, optional :: mesh2d_
137 class(meshcubedom3d), intent(in), target, optional :: mesh3d_
138 class(meshcubedspheredom2d), intent(in), target, optional :: meshcubedsphere2d_
139 class(meshcubedspheredom3d), intent(in), target, optional :: meshcubedsphere3d_
140
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
143
144
145 character(len=FILE_HSHORT) :: calendar
146 real(dp) :: start_daysec
147 !---------------------------------------------------------------------------
148
149 file_history_meshfield_startdate(:) = time_nowdate
150 file_history_meshfield_startsubsec = time_nowsubsec
151
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), &
159 ':', time_nowdate(6)
160 start_daysec = time_nowsubsec
161 else
162 file_history_meshfield_t_since = ''
163 endif
164
165 ! get calendar name
166 call calendar_get_name( calendar )
167
168 call file_history_setup( file_history_meshfiled_h_title, & ! [IN]
169 h_source, h_institute, & ! [IN]
170 start_daysec, time_dtsec, & ! [IN]
171 time_since = file_history_meshfield_t_since, & ! [IN]
172 calendar = calendar, & ! [IN]
173 default_zcoord = 'model', & ! [IN]
174 myrank = prc_myrank ) ! [IN]
175
176 call file_history_set_nowdate( time_nowdate, time_nowsubsec, time_nowstep )
177
178 !- Set a pointer to the variable of mesh
179
180 nullify( mesh1d, mesh2d, mesh3d )
181 nullify( meshcubedsphere2d, meshcubedsphere3d )
182
183 if ( present(mesh1d_) ) then
184 mesh1d => mesh1d_
185 call set_dim_axis1d()
186 else if ( present(mesh2d_) ) then
187 mesh2d => mesh2d_
188 call set_dim_axis2d()
189 else if ( present(mesh3d_) ) then
190 mesh3d => mesh3d_
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()
200 else
201 log_error("FILE_HISTORY_meshfield_setup",*) "Any mesh (mesh1d/2d/3d) are not specified."
202 call prc_abort
203 end if
204
205 file_history_filemeshfiled_disable = .false.
206
207 return
208 end subroutine file_history_meshfield_setup
209
210!OCL SERIAL
212 implicit none
213 !-------------------------------------------------
214
215 call file_history_write
216 return
217 end subroutine file_history_meshfield_write
218
219!OCL SERIAL
221 implicit none
222 !-------------------------------------------------
223
224 call file_history_finalize()
225 return
227
228 !-- 1D
229
230!OCL SERIAL
231 subroutine file_history_meshfield_put1d(hstid, field1d)
232 use scale_file_common_meshfield, only: &
234 implicit none
235 integer, intent(in) :: hstid
236 class(meshfield1d), intent(in) :: field1d
237
238 real(RP), allocatable :: buf(:)
239 !-------------------------------------------------
240
241 allocate( buf(dims1d_size(1)) )
242
243 call file_common_meshfield_put_field1d_cartesbuf( mesh1d, field1d, buf(:) )
244 call file_history_put(hstid, buf)
245
246 return
247 end subroutine file_history_meshfield_put1d
248
249!OCL SERIAL
250 subroutine file_history_meshfield_in1d( field1d, desc, standard_name )
251 implicit none
252 class(meshfield1d), intent(in) :: field1d
253 character(len=*), intent(in) :: desc
254 character(len=*), intent(in), optional :: standard_name
255
256 integer :: hstid
257 logical :: do_put
258 !-------------------------------------------------
259
260 call history_in_regvar( hstid, do_put, & ! (out)
261 field1d, desc, 1, standard_name, 'XYZ' ) ! (in)
262
263 if ( do_put ) call file_history_meshfield_put( hstid, field1d )
264
265 return
266 end subroutine file_history_meshfield_in1d
267
268 !-- 2D
269
270!OCL SERIAL
271 subroutine file_history_meshfield_put2d(hstid, field2d)
272 use scale_file_common_meshfield, only: &
275
276 implicit none
277 integer, intent(in) :: hstid
278 class(meshfield2d), intent(in) :: field2d
279
280 real(RP), allocatable :: buf(:,:)
281 !-------------------------------------------------
282
283 allocate( buf(dims2d_size(1),dims2d_size(2)) )
284
285 if ( associated(mesh2d) ) then
286 call file_common_meshfield_put_field2d_cartesbuf( mesh2d, field2d, buf(:,:) )
287 else if ( associated(meshcubedsphere2d) ) then
289 meshcubedsphere2d, field2d, buf(:,:) )
290 end if
291 call file_history_put(hstid, buf)
292
293 return
294 end subroutine file_history_meshfield_put2d
295
296!OCL SERIAL
297 subroutine file_history_meshfield_in2d( field2d, desc, standard_name )
298 implicit none
299 class(meshfield2d), intent(in) :: field2d
300 character(len=*), intent(in) :: desc
301 character(len=*), intent(in), optional :: standard_name
302
303 integer :: hstid
304 logical :: do_put
305 !-------------------------------------------------
306
307 call history_in_regvar( hstid, do_put, & ! (out)
308 field2d, desc, 2, standard_name, 'XY' ) ! (in)
309
310 if ( do_put ) call file_history_meshfield_put( hstid, field2d )
311
312 return
313 end subroutine file_history_meshfield_in2d
314
315 !-- 3D
316
317!OCL SERIAL
318 subroutine file_history_meshfield_put3d(hstid, field3d)
319 use scale_file_common_meshfield, only: &
322
323 implicit none
324 integer, intent(in) :: hstid
325 class(meshfield3d), intent(in) :: field3d
326
327 real(RP), allocatable :: buf(:,:,:)
328
329 !-------------------------------------------------
330
331 allocate( buf(dims3d_size(1,1),dims3d_size(2,1),dims3d_size(3,1)) )
332 if ( associated(mesh3d) ) then
333 call file_common_meshfield_put_field3d_cartesbuf( mesh3d, field3d, buf(:,:,:) )
334 else if ( associated(meshcubedsphere3d) ) then
336 meshcubedsphere3d, field3d, buf(:,:,:) )
337 end if
338 call file_history_put(hstid, buf)
339
340 return
341 end subroutine file_history_meshfield_put3d
342
343!OCL SERIAL
344 subroutine file_history_meshfield_in3d( field3d, desc, standard_name )
345 implicit none
346 class(meshfield3d), intent(in) :: field3d
347 character(len=*), intent(in) :: desc
348 character(len=*), intent(in), optional :: standard_name
349
350 integer :: hstid
351 logical :: do_put
352 !-------------------------------------------------
353
354 call history_in_regvar( hstid, do_put, & ! (out)
355 field3d, desc, 3, standard_name, 'XYZ' ) ! (in)
356
357 if ( do_put ) call file_history_meshfield_put( hstid, field3d )
358
359 return
360 end subroutine file_history_meshfield_in3d
361
362!----------------
363
364!OCL SERIAL
365 subroutine history_in_regvar( hstid, do_put, &
366 field, desc, ndim, standard_name, dim_type )
367
368 use scale_file_history, only: &
369 file_history_reg, &
370 file_history_query
371
372 implicit none
373
374 integer, intent(out) :: hstid
375 logical, intent(out) :: do_put
376 class(meshfieldbase), intent(in) :: field
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
381
382 logical, parameter :: fill_halo = .false.
383 !------------------------------------------------------
384
385 hstid = -1
386 do_put = .false.
387
388 if ( file_history_filemeshfiled_disable ) return
389
390 ! Check whether the item has been already registered
391 call file_history_reg( field%varname, desc, field%unit, & ! [IN]
392 hstid, & ! [OUT]
393 standard_name=standard_name, & ! [IN]
394 ndims=ndim, & ! [IN]
395 dim_type=dim_type, & ! [IN]
396 fill_halo=fill_halo ) ! [IN]
397
398 if ( hstid < 0 ) return
399
400 ! Check whether it is time to input the item
401 call file_history_query( hstid, do_put ) ! [IN], [OUT]
402
403 return
404 end subroutine history_in_regvar
405
406!OCL SERIAL
407 subroutine set_dim_axis1d()
408 use scale_file_common_meshfield, only: &
412 use scale_mesh_base1d, only: &
413 dimtype_num => meshbase1d_dimtype_num, &
414 dimtype_x => meshbase1d_dimtypeid_x
415
416 implicit none
417
418 type(file_common_meshfield_diminfo) :: dimsinfo(DIMTYPE_NUM)
419 real(RP), allocatable :: x(:)
420 integer :: start(1,1), count(1,1)
421 character(len=H_SHORT) :: dims(1,1)
422 integer :: n, ndim
423 !-------------------------------------------------
424
425 call file_common_meshfield_get_dims1d( mesh1d, & ! (in)
426 dimsinfo(:) ) ! (out)
427
428 dims1d_size(1) = dimsinfo(dimtype_x)%size
429 allocate( x(dims1d_size(1)) )
430 call file_common_meshfield_get_axis1d( mesh1d, dimsinfo, & ! (in)
431 x ) ! (out)
432
433 start(:,:) = 1
434 do n=1, dimtype_num
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,:))
439 end do
440
441 call file_history_set_axis( dimsinfo(dimtype_x)%name, dimsinfo(dimtype_x)%desc, &
442 dimsinfo(dimtype_x)%unit, dimsinfo(dimtype_x)%name, x(:))
443
444 return
445 end subroutine set_dim_axis1d
446
447!OCL SERIAL
448 subroutine set_dim_axis2d()
449 use scale_file_common_meshfield, only: &
453 use scale_mesh_base2d, only: &
454 dimtype_num => meshbase2d_dimtype_num, &
455 dimtype_x => meshbase2d_dimtypeid_x, &
456 dimtype_y => meshbase2d_dimtypeid_y
457
458 implicit none
459
460 type(file_common_meshfield_diminfo) :: dimsinfo(DIMTYPE_NUM)
461 real(RP), allocatable :: x(:), y(:)
462 integer :: start(2,1), count(2,1)
463 character(len=H_SHORT) :: dims(2,1)
464 integer :: n, ndim
465 !-------------------------------------------------
466
467 call file_common_meshfield_get_dims2d( mesh2d, & ! (in)
468 dimsinfo(:) ) ! (out)
469
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)) )
473 call file_common_meshfield_get_axis2d( mesh2d, dimsinfo, & ! (in)
474 x, y ) ! (out)
475
476 start(:,:) = 1
477
478 do n=1, dimtype_num
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,:))
483 end do
484
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(:))
487
488 return
489 end subroutine set_dim_axis2d
490
491!OCL SERIAL
492 subroutine set_dim_axis3d()
493 use scale_file_common_meshfield, only: &
497 use scale_mesh_base3d, only: &
498 dimtype_num => meshbase3d_dimtype_num, &
499 dimtype_x => meshbase3d_dimtypeid_x, &
500 dimtype_y => meshbase3d_dimtypeid_y, &
501 dimtype_z => meshbase3d_dimtypeid_z
502
503 implicit none
504
505 type(file_common_meshfield_diminfo) :: dimsinfo(DIMTYPE_NUM)
506 real(RP), allocatable :: x(:), y(:), z(:)
507 integer :: start(3,1), count(3,1)
508 character(len=H_SHORT) :: dims(3,1)
509 integer :: n, ndim
510 !-------------------------------------------------
511
512 call file_common_meshfield_get_dims3d( mesh3d, & ! (in)
513 dimsinfo(:) ) ! (out)
514
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)) )
521 call file_common_meshfield_get_axis3d( mesh3d, dimsinfo, & ! (in)
522 x, y, z ) ! (out)
523
524 start(:,:) = 1
525 do n=1, dimtype_num
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,:))
530 end do
531
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) )
536
537 return
538 end subroutine set_dim_axis3d
539
540!OCL SERIAL
541 subroutine set_dim_axis2d_cubedsphere()
542 use scale_file_common_meshfield, only: &
546 use scale_mesh_base2d, only: &
547 dimtype_num => meshbase2d_dimtype_num, &
548 dimtype_x => meshbase2d_dimtypeid_x, &
549 dimtype_y => meshbase2d_dimtypeid_y
550
551 implicit none
552
553 type(file_common_meshfield_diminfo) :: dimsinfo(DIMTYPE_NUM)
554 real(RP), allocatable :: x(:), y(:)
555 integer :: start(2,1), count(2,1)
556 character(len=H_SHORT) :: dims(2,1)
557 integer :: n, ndim
558 !-------------------------------------------------
559
560 call file_common_meshfield_get_dims( meshcubedsphere2d, & ! (in)
561 dimsinfo(:) ) ! (out)
562
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)) )
566
567 call file_common_meshfield_get_axis( meshcubedsphere2d, dimsinfo, & ! (in)
568 x, y ) ! (out)
569
570 start(:,:) = 1
571
572 do n=1, dimtype_num
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,:))
577 end do
578
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(:))
581
582 return
583 end subroutine set_dim_axis2d_cubedsphere
584
585!OCL SERIAL
586 subroutine set_dim_axis3d_cubedsphere()
587 use scale_file_common_meshfield, only: &
591 use scale_mesh_base3d, only: &
592 dimtype_num => meshbase3d_dimtype_num, &
593 dimtype_x => meshbase3d_dimtypeid_x, &
594 dimtype_y => meshbase3d_dimtypeid_y, &
595 dimtype_z => meshbase3d_dimtypeid_z
596
597 implicit none
598
599 type(file_common_meshfield_diminfo) :: dimsinfo(DIMTYPE_NUM)
600 real(RP), allocatable :: x(:), y(:), z(:)
601 integer :: start(3,1), count(3,1)
602 character(len=H_SHORT) :: dims(3,1)
603 integer :: n, ndim
604 !-------------------------------------------------
605
606 call file_common_meshfield_get_dims( meshcubedsphere3d, & ! (in)
607 dimsinfo(:) ) ! (out)
608
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)) )
615 call file_common_meshfield_get_axis( meshcubedsphere3d, dimsinfo, & ! (in)
616 x, y, z ) ! (out)
617
618 start(:,:) = 1
619 do n=1, dimtype_num
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,:))
624 end do
625
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) )
630
631 return
632 end subroutine set_dim_axis3d_cubedsphere
633
634!----------------
635
module FElib / Element / Base
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)
subroutine, public file_history_meshfield_setup(mesh1d_, mesh2d_, mesh3d_, meshcubedsphere2d_, meshcubedsphere3d_)
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