MPAS-JEDI
mpas_trajectories.F90
Go to the documentation of this file.
1 ! (C) Copyright 2017 UCAR
2 !
3 ! This software is licensed under the terms of the Apache Licence Version 2.0
4 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5 
7 
8 use fckit_log_module, only: fckit_log
9 
10 !MPAS-Model
11 use mpas_derived_types
12 use mpas_pool_routines
13 
14 !mpas-jedi
16 
17 implicit none
18 private
19 
21 public :: mpas_traj_registry
22 
23 ! ------------------------------------------------------------------------------
24 
25 !> Fortran derived type to hold the model trajectory
27  !integer :: nothing
28  integer :: nf ! Number of variables in fld
29  character(len=22), allocatable :: fldnames(:) ! Variable identifiers
30  type (mpas_pool_type), pointer :: subfields !---> state variables (to be analyzed)
31 end type mpas_trajectory
32 
33 #define LISTED_TYPE mpas_trajectory
34 
35 !> Linked list interface - defines registry_t type
36 #include <oops/util/linkedList_i.f>
37 
38 !> Global registry
39 type(registry_t) :: mpas_traj_registry
40 
41 ! ------------------------------------------------------------------------------
42 contains
43 ! ------------------------------------------------------------------------------
44 !> Linked list implementation
45 #include <oops/util/linkedList_c.f>
46 
47 ! ------------------------------------------------------------------------------
48 
49 subroutine set_traj(self,state)
50 implicit none
51 type(mpas_trajectory), intent(inout) :: self
52 type(mpas_fields), intent(in) :: state
53 
54  call fckit_log%info ('===> set_traj(self) in mpas_trajectories.F90')
55 
56  self%nf = state%nf
57  allocate(self%fldnames( self%nf ))
58  self%fldnames = state%fldnames
59  call copy_pool(state % subFields, self % subFields)
60 
61  call fckit_log%info ('===> DONE set_traj(self) in mpas_trajectories.F90')
62 
63 end subroutine set_traj
64 
65 ! ------------------------------------------------------------------------------
66 
67 subroutine delete_traj(self)
68 implicit none
69 type(mpas_trajectory), intent(inout) :: self
70 
71  call fckit_log%info ('===> delete_traj(self) in mpas_trajectories.F90')
72 
73 end subroutine delete_traj
74 
75 ! ------------------------------------------------------------------------------
76 
77 end module mpas_trajectories
subroutine, public copy_pool(pool_src, pool)
subroutine, public delete_traj(self)
type(registry_t), public mpas_traj_registry
Linked list interface - defines registry_t type.
subroutine, public set_traj(self, state)
Linked list implementation.
Fortran derived type to hold MPAS field.
Fortran derived type to hold the model trajectory.