libsim Versione 7.2.6
|
◆ grid_transform_get_val()
Method for returning the contents of the object. Only a few selected memebrs of grid_transform object can be queried, this is mainly for use by volgrid6d_class, rather than for public use.
Definizione alla linea 3061 del file grid_transform_class.F90. 3063 CALL raise_error()
3064 RETURN
3065 ENDIF
3066
3067ENDIF
3068
3069#ifdef DEBUG
3070call l4f_category_log(this%category,l4f_debug, &
3071 "start grid_transform_compute "//trim(this%trans%trans_type)//':'// &
3072 trim(this%trans%sub_type))
3073#endif
3074
3075IF (this%trans%trans_type == 'zoom') THEN
3076
3077 field_out(this%outinx:this%outfnx, &
3078 this%outiny:this%outfny,:) = &
3079 field_in(this%iniox:this%infox, &
3080 this%inioy:this%infoy,:)
3081
3082ELSE IF (this%trans%trans_type == 'boxregrid') THEN
3083
3084 IF (this%trans%sub_type == 'average') THEN
3085 IF (vartype == var_dir360) THEN
3086 DO k = 1, innz
3087 jj = 0
3088 DO j = 1, this%inny - this%trans%box_info%npy + 1, this%trans%box_info%npy
3089 je = j+this%trans%box_info%npy-1
3090 jj = jj+1
3091 ii = 0
3092 DO i = 1, this%innx - this%trans%box_info%npx + 1, this%trans%box_info%npx
3093 ie = i+this%trans%box_info%npx-1
3094 ii = ii+1
3095 navg = count(field_in(i:ie,j:je,k) /= rmiss)
3096 IF (navg > 0) THEN
|