46 #define LISTED_TYPE qg_change_var_config
49 #include "oops/util/linkedList_i.f"
59 #include "oops/util/linkedList_c.f"
70 logical,
intent(in),
optional :: ad
77 if (
present(ad)) lad = ad
82 conf%x_in =
allocated(fld_out%x)
83 conf%q_in =
allocated(fld_out%q)
84 conf%u_in =
allocated(fld_out%u)
85 conf%v_in =
allocated(fld_out%v)
86 conf%x_out =
allocated(fld_in%x)
87 conf%q_out =
allocated(fld_in%q)
88 conf%u_out =
allocated(fld_in%u)
89 conf%v_out =
allocated(fld_in%v)
92 conf%x_in =
allocated(fld_in%x)
93 conf%q_in =
allocated(fld_in%q)
94 conf%u_in =
allocated(fld_in%u)
95 conf%v_in =
allocated(fld_in%v)
96 conf%x_out =
allocated(fld_out%x)
97 conf%q_out =
allocated(fld_out%q)
98 conf%u_out =
allocated(fld_out%u)
99 conf%v_out =
allocated(fld_out%v)
103 if (conf%x_out.and.(.not.(conf%x_in.or.conf%q_in)))
call abor1_ftn(
'qg_change_var_setup: x or q required to compute x')
104 if (conf%q_out.and.(.not.(conf%x_in.or.conf%q_in)))
call abor1_ftn(
'qg_change_var_setup: x or q required to compute q')
105 if (conf%u_out.and.(.not.(conf%x_in.or.conf%q_in.or.conf%u_in))) &
106 &
call abor1_ftn(
'qg_change_var_setup: x, q or u required to compute u')
107 if (conf%v_out.and.(.not.(conf%x_in.or.conf%q_in.or.conf%v_in))) &
108 &
call abor1_ftn(
'qg_change_var_setup: x, q or v required to compute v')
111 conf%q_to_x = .false.
112 conf%x_to_q = .false.
113 conf%x_to_u = .false.
114 conf%x_to_v = .false.
117 if (conf%x_out) conf%q_to_x = (.not.conf%x_in)
118 if (conf%q_out) conf%x_to_q = (.not.conf%q_in)
120 if (.not.conf%u_in)
then
122 conf%q_to_x = (.not.conf%x_in)
126 if (.not.conf%v_in)
then
128 conf%q_to_x = (.not.conf%x_in)
142 real(kind_real),
intent(out) :: x(fld%geom%nx,fld%geom%ny,fld%geom%nz)
143 real(kind_real),
intent(out) :: q(fld%geom%nx,fld%geom%ny,fld%geom%nz)
144 real(kind_real),
intent(out) :: u(fld%geom%nx,fld%geom%ny,fld%geom%nz)
145 real(kind_real),
intent(out) :: v(fld%geom%nx,fld%geom%ny,fld%geom%nz)
147 if (
allocated(fld%x))
then
152 if (
allocated(fld%q))
then
157 if (
allocated(fld%u))
then
162 if (
allocated(fld%v))
then
178 real(kind_real),
intent(in) :: x(fld%geom%nx,fld%geom%ny,fld%geom%nz)
179 real(kind_real),
intent(in) :: q(fld%geom%nx,fld%geom%ny,fld%geom%nz)
180 real(kind_real),
intent(in) :: u(fld%geom%nx,fld%geom%ny,fld%geom%nz)
181 real(kind_real),
intent(in) :: v(fld%geom%nx,fld%geom%ny,fld%geom%nz)
183 if (
allocated(fld%x)) fld%x = x
184 if (
allocated(fld%q)) fld%q = q
185 if (
allocated(fld%u)) fld%u = u
186 if (
allocated(fld%v)) fld%v = v
200 real(kind_real) :: x(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz),q(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz)
201 real(kind_real) :: u(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz),v(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz)
217 if (conf%x_to_q)
call convert_x_to_q(fld_in%geom,x,fld_in%x_north,fld_in%x_south,q)
218 if (conf%q_to_x)
call convert_q_to_x(fld_in%geom,q,fld_in%x_north,fld_in%x_south,x)
219 if (conf%x_to_u)
call convert_x_to_u(fld_in%geom,x,fld_in%x_north,fld_in%x_south,u)
237 real(kind_real) :: x(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz),q(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz)
238 real(kind_real) :: u(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz),v(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz)
274 real(kind_real) :: x(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz),q(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz)
275 real(kind_real) :: u(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz),v(fld_in%geom%nx,fld_in%geom%ny,fld_in%geom%nz)
Fortran interface to Variables.
subroutine qg_change_var_set(conf, fld, x, q, u, v)
Set variables.
subroutine qg_change_var_setup(conf, fld_in, fld_out, ad)
Linked list implementation.
type(registry_t), public qg_change_var_registry
Linked list interface - defines registry_t type.
subroutine, public qg_change_var(fld_in, fld_out)
Change of variable.
subroutine qg_change_var_get(conf, fld, x, q, u, v)
Get variables.
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 convert_q_to_x_tl(geom, q, x)
Convert potential vorticity to streamfunction - tangent linear.
subroutine, public convert_q_to_x(geom, q, x_north, x_south, x)
Convert potential vorticity to streamfunction.
subroutine, public convert_q_to_x_ad(geom, x, q)
Convert potential vorticity to streamfunction - adjoint.
subroutine, public convert_x_to_q_tl(geom, x, q)
Convert streamfunction to potential vorticity - tangent linear.
subroutine, public convert_x_to_q(geom, x, x_north, x_south, q)
Convert streamfunction to potential vorticity.
subroutine, public convert_x_to_q_ad(geom, q, x)
Convert streamfunction to potential vorticity - adjoint.
subroutine, public convert_x_to_u(geom, x, x_north, x_south, u)
Convert streafunction to zonal wind.
subroutine, public convert_x_to_u_tl(geom, x, u)
Convert streafunction to zonal wind - tangent Linear.
subroutine, public convert_x_to_u_ad(geom, u, x)
Convert streafunction to zonal wind - adjoint.
subroutine, public convert_x_to_v(geom, x, v)
Convert streafunction to meridional wind.
subroutine, public convert_x_to_v_tl(geom, x, v)
Convert streafunction to meridional wind - tangent Linear.
subroutine, public convert_x_to_v_ad(geom, v, x)
Convert streafunction to meridional wind - adjoint.
subroutine, public qg_fields_copy_lbc(self, other)
Copy fields LBC.
subroutine, public qg_fields_check_resolution(fld1, fld2)
Check fields resolution.