8 use atlas_module,
only: atlas_field
10 use fckit_log_module,
only: fckit_log
38 type(
qg_locs),
intent(in) :: locs
40 type(datetime),
intent(in) :: t1, t2
41 type(
qg_gom),
intent(inout) :: gom
45 real(kind_real),
pointer :: lonlat(:,:), z(:)
46 type(atlas_field) :: lonlat_field, z_field
50 lonlat_field = locs%lonlat()
51 call lonlat_field%data(lonlat)
52 z_field = locs%altitude()
66 do jloc=1,locs%nlocs()
68 if (t1 < locs%times(jloc) .and. locs%times(jloc) <= t2)
then
71 & z(jloc),fld_gom%x,gom%x(jloc))
73 & z(jloc),fld_gom%q,gom%q(jloc))
75 & z(jloc),fld_gom%u,gom%u(jloc))
77 & z(jloc),fld_gom%v,gom%v(jloc))
83 call lonlat_field%final()
94 type(
qg_locs),
intent(in) :: locs
96 type(datetime),
intent(in) :: t1, t2
97 type(
qg_gom),
intent(inout) :: gom
101 real(kind_real),
pointer :: lonlat(:,:), z(:)
102 type(atlas_field) :: lonlat_field, z_field
106 lonlat_field = locs%lonlat()
107 call lonlat_field%data(lonlat)
108 z_field = locs%altitude()
121 do jloc=1,locs%nlocs()
123 if (t1 < locs%times(jloc) .and. locs%times(jloc) <= t2)
then
126 & z(jloc),fld_gom%x,gom%x(jloc))
128 & z(jloc),fld_gom%q,gom%q(jloc))
130 & z(jloc),fld_gom%u,gom%u(jloc))
132 & z(jloc),fld_gom%v,gom%v(jloc))
138 call lonlat_field%final()
149 type(
qg_locs),
intent(in) :: locs
151 type(datetime),
intent(in) :: t1, t2
152 type(
qg_gom),
intent(in) :: gom
156 real(kind_real),
allocatable :: x(:,:,:),q(:,:,:),u(:,:,:),v(:,:,:)
157 real(kind_real),
pointer :: lonlat(:,:), z(:)
158 type(atlas_field) :: lonlat_field, z_field
162 lonlat_field = locs%lonlat()
163 call lonlat_field%data(lonlat)
164 z_field = locs%altitude()
176 do jloc=locs%nlocs(),1,-1
178 if (t1 < locs%times(jloc) .and. locs%times(jloc) <= t2)
then
181 & z(jloc),gom%x(jloc),fld_gom%x)
183 & z(jloc),gom%q(jloc),fld_gom%q)
185 & z(jloc),gom%u(jloc),fld_gom%u)
187 & z(jloc),gom%v(jloc),fld_gom%v)
197 call lonlat_field%final()
Fortran interface to Variables.
subroutine, public qg_change_var(fld_in, fld_out)
Change of variable.
subroutine, public qg_change_var_tl(fld_in, fld_out)
Change of variable.
subroutine, public qg_change_var_ad(fld_in, fld_out)
Change of variable - adjoint.
subroutine, public qg_fields_copy_lbc(self, other)
Copy fields LBC.
subroutine, public qg_fields_zero(self)
Set fields to zero.
subroutine, public qg_fields_create(self, geom, vars, lbc)
Linked list implementation.
subroutine, public qg_fields_check(self)
Check fields.
subroutine, public qg_fields_self_add(self, rhs)
Add fields.
subroutine, public qg_fields_create_from_other(self, other, geom)
Create fields from another one.
subroutine, public qg_getvalues_interp_tl(locs, fld, t1, t2, gom)
Interpolation from fields - tangent linear.
subroutine, public qg_getvalues_interp(locs, fld, t1, t2, gom)
Interpolation from fields.
subroutine, public qg_getvalues_interp_ad(locs, fld, t1, t2, gom)
Interpolation from fields - adjoint.
subroutine, public qg_interp_trilinear_ad(geom, lon, lat, z, val, field)
Interpolation - adjoint.
subroutine, public qg_interp_trilinear(geom, lon, lat, z, field, val)
Trilinear interpolation.