IODA
ioda_obs_example_mod.F90
Go to the documentation of this file.
1 !
2 ! (C) Copyright 2017 UCAR
3 !
4 ! This software is licensed under the terms of the Apache Licence Version 2.0
5 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 
7 !> Fortran example module for observation space
8 
9 ! TODO: replace example with your_obsspace_name through the file
10 
12 
13 use kinds
14 use fckit_log_module, only : fckit_log
15 
16 implicit none
17 private
18 integer, parameter :: max_string=800
19 
20 public ioda_obs_example
23 
24 ! ------------------------------------------------------------------------------
25 
26 !> Fortran derived type to hold observation space info
27 ! TODO: fill in, below is just an example
29  integer :: nobs
30 end type ioda_obs_example
31 
32 ! ------------------------------------------------------------------------------
33 
34 contains
35 ! ------------------------------------------------------------------------------
36 ! TODO: replace the below function with your constructor of obsspace
37 subroutine ioda_obs_example_setup(self, nobs)
38 implicit none
39 type(ioda_obs_example), intent(inout) :: self
40 integer, intent(in) :: nobs
41 
42 call ioda_obs_example_delete(self)
43 
44 self%nobs = nobs
45 
46 end subroutine ioda_obs_example_setup
47 
48 ! ------------------------------------------------------------------------------
49 ! TODO: replace the below function with your destructor of obsspace
50 subroutine ioda_obs_example_delete(self)
51 implicit none
52 type(ioda_obs_example), intent(inout) :: self
53 
54 end subroutine ioda_obs_example_delete
55 
56 ! ------------------------------------------------------------------------------
57 ! TODO: replace the below function with your random obs generator
58 subroutine ioda_obs_example_generate(self, nobs)
59 implicit none
60 type(ioda_obs_example), intent(inout) :: self
61 integer, intent(in) :: nobs
62 
63 end subroutine ioda_obs_example_generate
64 
65 ! ------------------------------------------------------------------------------
66 ! TODO: replace the below function with your obsspace read
67 subroutine ioda_obs_example_read(filename, self)
68 implicit none
69 character(max_string), intent(in) :: filename
70 type(ioda_obs_example), intent(inout), target :: self
71 
72 end subroutine ioda_obs_example_read
73 
74 ! ------------------------------------------------------------------------------
75 
76 end module ioda_obs_example_mod
Fortran example module for observation space.
subroutine, public ioda_obs_example_delete(self)
integer, parameter max_string
subroutine, public ioda_obs_example_setup(self, nobs)
subroutine, public ioda_obs_example_read(filename, self)
subroutine, public ioda_obs_example_generate(self, nobs)
Fortran derived type to hold observation space info.