Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_FieldBundle), | intent(out) | :: | bundle | |||
real(kind=ESMF_KIND_R4), | intent(in) | :: | weights(:) | |||
type(ESMF_Geom), | intent(in) | :: | geom | |||
type(ESMF_TypeKind_Flag), | intent(in) | :: | typekind | |||
character(len=*), | intent(in) | :: | units | |||
logical, | intent(in), | optional | :: | with_ungridded |
subroutine setup_bundle(bundle, weights, geom, typekind, units, with_ungridded) type(ESMF_FieldBundle), intent(out) :: bundle real(kind=ESMF_KIND_R4), intent(in) :: weights(:) type(ESMF_Geom), intent(in) :: geom type(ESMF_TypeKind_Flag), intent(in) :: typekind character(len=*), intent(in) :: units logical, optional, intent(in) :: with_ungridded integer :: i type(ESMF_Field) :: f integer :: fieldCount type(UngriddedDims) :: ungridded_dims type(VerticalStaggerLoc) :: vert_staggerloc bundle = ESMF_FieldBundleCreate() call MAPL_FieldBundleSet(bundle, geom=geom) fieldCount = size(weights) - 1 do i = 1, fieldCount call setup_field(f, geom, typekind, units, with_ungridded=with_ungridded) call ESMF_FieldBundleAdd(bundle, [f], multiflag=.true.) end do call MAPL_FieldBundleSet(bundle, interpolation_weights=weights, typekind=typekind, units=units) vert_staggerloc = VERTICAL_STAGGER_NONE ungridded_dims = UngriddedDims() if (present(with_ungridded)) then if (with_ungridded) then vert_staggerloc = VERTICAL_STAGGER_CENTER call MAPL_FieldBundleSet(bundle, num_levels=NUM_LEVELS_VGRID) call ungridded_dims%add_dim(UngriddedDim(NUM_RADII, "radius", 'nm')) end if end if call MAPL_FieldBundleSet(bundle, vert_staggerloc=vert_staggerloc) call MAPL_FieldBundleSet(bundle, ungridded_dims=ungridded_dims) end subroutine setup_bundle