SCALE-RM
Functions/Subroutines
scale_file_history_cartesc Module Reference

module file / history_cartesC More...

Functions/Subroutines

subroutine, public file_history_cartesc_setup
 Setup. More...
 
subroutine, public file_history_cartesc_set_pres (PRES, PRESH, SFC_PRES)
 set hydrostatic pressure for pressure coordinate More...
 
subroutine file_history_cartesc_truncate_1d (src, dim_type, zcoord, fill_halo, dst)
 truncate 1D data to history buffer More...
 
subroutine file_history_cartesc_truncate_3d (src, dim_type, zcoord, fill_halo, dst)
 truncate 3D data to history buffer More...
 

Detailed Description

module file / history_cartesC

Description
History output module for the cartesianC grid
Author
Team SCALE
NAMELIST
  • PARAM_FILE_HISTORY_CARTESC
    nametypedefault valuecomment
    FILE_HISTORY_CARTESC_PRES_NLAYER integer 0
    FILE_HISTORY_CARTESC_PRES real(RP), dimension(NLAYER_MAX) > pressure level to output [hPa]
    FILE_HISTORY_CARTESC_BOUNDARY logical .false.

History Output
No history output

Function/Subroutine Documentation

◆ file_history_cartesc_setup()

subroutine, public scale_file_history_cartesc::file_history_cartesc_setup ( )

Setup.

Definition at line 76 of file scale_file_history_cartesC.F90.

References scale_calendar::calendar_get_name(), file_history_cartesc_truncate_1d(), file_history_cartesc_truncate_3d(), scale_file_history::file_history_set_nowdate(), scale_file_history::file_history_setup(), scale_file_history::file_history_truncate_1d, scale_file_history::file_history_truncate_2d, scale_file_history::file_history_truncate_3d, scale_file_h::file_hshort, scale_io::h_institute, scale_io::h_source, scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::ieb, scale_atmos_grid_cartesc_index::imaxb, scale_interp_vert::interp_vert_alloc_pres(), scale_io::io_fid_conf, scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::isb, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::jeb, scale_atmos_grid_cartesc_index::jmaxb, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::jsb, scale_prc_cartesc::prc_has_s, scale_prc_cartesc::prc_has_w, scale_prc::prc_masterrank, scale_prc::prc_myrank, scale_prc_cartesc::prc_periodic_x, scale_prc_cartesc::prc_periodic_y, scale_time::time_dtsec, scale_time::time_nowdate, scale_time::time_nowms, scale_time::time_nowstep, and scale_time::time_startdaysec.

Referenced by mod_rm_driver::rm_driver().

76  use scale_file_h, only: &
78  use scale_file_history, only: &
84  use scale_prc, only: &
87  use scale_prc_cartesc, only: &
90  prc_has_w, &
91  prc_has_s
92  use scale_time, only: &
93  time_nowdate, &
94  time_nowms, &
95  time_nowstep, &
96  time_dtsec, &
98  use scale_calendar, only: &
100  use scale_interp_vert, only: &
102  implicit none
103 
104  integer, parameter :: nlayer_max = 300
105  real(RP) :: file_history_cartesc_pres(nlayer_max)
106 
107  namelist / param_file_history_cartesc / &
108  file_history_cartesc_pres_nlayer, &
109  file_history_cartesc_pres, &
110  file_history_cartesc_boundary
111 
112  character(len=H_MID) :: file_history_cartesc_h_title = 'SCALE-RM FILE_HISTORY_CARTESC OUTPUT'
113  character(len=H_MID) :: file_history_cartesc_t_since
114 
115  character(len=FILE_HSHORT) :: calendar
116  real(DP) :: start_daysec
117  integer :: ierr
118  integer :: k
119  !---------------------------------------------------------------------------
120 
121  log_newline
122  log_info("FILE_HISTORY_CARTESC_setup",*) 'Setup'
123 
124  file_history_cartesc_pres(:) = 0.0_rp
125 
126  !--- read namelist
127  rewind(io_fid_conf)
128  read(io_fid_conf,nml=param_file_history_cartesc,iostat=ierr)
129  if( ierr < 0 ) then !--- missing
130  log_info("FILE_HISTORY_CARTESC_setup",*) 'Not found namelist. Default used.'
131  elseif( ierr > 0 ) then !--- fatal error
132  log_error("FILE_HISTORY_CARTESC_setup",*) 'Not appropriate names in namelist PARAM_FILE_HISTORY_CARTESC. Check!'
133  call prc_abort
134  endif
135  log_nml(param_file_history_cartesc)
136 
137 
138  ! check pressure coordinate
139  if ( file_history_cartesc_pres_nlayer > 0 ) then
140  if ( file_history_cartesc_pres_nlayer > nlayer_max ) then
141  log_error("FILE_HISTORY_CARTESC_setup",'(a,i3)') 'FILE_HISTORY_CARTESC_PRES_nlayer must be <= ', nlayer_max
142  call prc_abort
143  end if
144  allocate( file_history_cartesc_pres_val(file_history_cartesc_pres_nlayer) )
145 
146  do k = 1, file_history_cartesc_pres_nlayer
147  if ( file_history_cartesc_pres(k) <= 0.0_rp ) then
148  log_error("FILE_HISTORY_CARTESC_setup",'(a,i3,f7.1)') 'Invalid value found in pressure coordinate! (k,value)=', k, file_history_cartesc_pres(k)
149  call prc_abort
150  elseif ( file_history_cartesc_pres(k+1) >= file_history_cartesc_pres(k) ) then
151  log_error("FILE_HISTORY_CARTESC_setup",'(a,i3,2f7.1)') 'The value of pressure coordinate must be descending order! ', &
152  '(k,value[k],value[k+1])=', k, file_history_cartesc_pres(k), file_history_cartesc_pres(k+1)
153  call prc_abort
154  endif
155  file_history_cartesc_pres_val(k) = file_history_cartesc_pres(k) * 100.0_rp ! [hPa->Pa]
156  enddo
157 
158  call interp_vert_alloc_pres( file_history_cartesc_pres_nlayer, ia, ja ) ! [IN]
159  else
160  log_info("FILE_HISTORY_CARTESC_setup",*) 'FILE_HISTORY_CARTESC_PRES_nlayer is not set.'
161  log_info("FILE_HISTORY_CARTESC_setup",*) 'Output with pressure coordinate is disabled'
162  endif
163 
164 
165 
166  file_history_cartesc_startdate(:) = time_nowdate
167  file_history_cartesc_startms = time_nowms
168 
169  start_daysec = time_startdaysec
170  if ( time_nowdate(1) > 0 ) then
171  write(file_history_cartesc_t_since,'(I4.4,5(A1,I2.2))') time_nowdate(1), &
172  '-', time_nowdate(2), &
173  '-', time_nowdate(3), &
174  ' ', time_nowdate(4), &
175  ':', time_nowdate(5), &
176  ':', time_nowdate(6)
177  start_daysec = time_nowms
178  else
179  file_history_cartesc_t_since = ''
180  endif
181 
182  if ( file_history_cartesc_boundary ) then
183  ims = isb
184  ime = ieb
185  jms = jsb
186  jme = jeb
187 
188  imsh = ims
189  jmsh = jms
190 
191  im = imaxb
192  jm = jmaxb
193  imh = im
194  jmh = jm
195  else
196  ims = is
197  ime = ie
198  jms = js
199  jme = je
200 
201  if ( prc_has_w .OR. prc_periodic_x ) then
202  imsh = ims
203  else
204  imsh = ims - 1 ! including i = IS-1
205  endif
206  if ( prc_has_s .OR. prc_periodic_y ) then
207  jmsh = jms
208  else
209  jmsh = jms - 1 ! include j = JS-1
210  endif
211 
212  im = ime - ims + 1
213  jm = jme - jms + 1
214  imh = ime - imsh + 1
215  jmh = jme - jmsh + 1
216  endif
217 
218  ! get calendar name
219  call calendar_get_name( calendar )
220 
221  call file_history_setup( file_history_cartesc_h_title, & ! [IN]
222  h_source, h_institute, & ! [IN]
223  start_daysec, time_dtsec, & ! [IN]
224  time_since = file_history_cartesc_t_since, & ! [IN]
225  calendar = calendar, & ! [IN]
226  default_zcoord = 'model', & ! [IN]
227  myrank = prc_myrank ) ! [IN]
228 
230 
231  call file_history_cartesc_set_dims
232 
233  call file_history_cartesc_set_axes
234 
235  call file_history_cartesc_set_axes_attributes
236 
237  file_history_truncate_1d => file_history_cartesc_truncate_1d
238  file_history_truncate_2d => file_history_cartesc_truncate_2d
239  file_history_truncate_3d => file_history_cartesc_truncate_3d
240 
241  return
integer, public time_nowstep
current step [number]
Definition: scale_time.F90:74
subroutine, public file_history_setup(title, source, institution, time_start, time_interval, time_units, time_since, calendar, default_basename, default_postfix_timelabel, default_zcoord, default_tinterval, default_tunit, default_taverage, default_datatype, myrank)
Setup.
real(dp), public time_nowms
subsecond part of current time [millisec]
Definition: scale_time.F90:70
integer, public ia
of whole cells: x, local, with HALO
real(dp), public time_startdaysec
second of start time [sec]
Definition: scale_time.F90:78
module INTERPOLATION vertical
integer, public ja
of whole cells: y, local, with HALO
module process / cartesC
integer, public io_fid_conf
Config file ID.
Definition: scale_io.F90:55
logical, public prc_has_s
logical, public prc_periodic_y
periodic condition or not (Y)?
logical, public prc_periodic_x
periodic condition or not (X)?
integer, public is
start point of inner domain: x, local
integer, public ie
end point of inner domain: x, local
subroutine, public calendar_get_name(name)
real(dp), public time_dtsec
time interval of model [sec]
Definition: scale_time.F90:38
character(len=h_mid), public h_source
for file header
Definition: scale_io.F90:49
module PROCESS
Definition: scale_prc.F90:11
integer, public je
end point of inner domain: y, local
integer, parameter, public file_hshort
character(len=h_mid), public h_institute
for file header
Definition: scale_io.F90:50
module TIME
Definition: scale_time.F90:16
integer, parameter, public prc_masterrank
master process in each communicator
Definition: scale_prc.F90:65
subroutine, public interp_vert_alloc_pres(Kpres, IA, JA)
Setup.
integer, public prc_myrank
process num in local communicator
Definition: scale_prc.F90:89
procedure(truncate_2d), pointer, public file_history_truncate_2d
integer, public js
start point of inner domain: y, local
procedure(truncate_1d), pointer, public file_history_truncate_1d
module CALENDAR
integer, dimension(6), public time_nowdate
current time [YYYY MM DD HH MM SS]
Definition: scale_time.F90:69
module file_history
module file_h
procedure(truncate_3d), pointer, public file_history_truncate_3d
logical, public prc_has_w
subroutine, public file_history_set_nowdate(NOWDATE, NOWMS, NOWSTEP)
set now step
Here is the call graph for this function:
Here is the caller graph for this function:

◆ file_history_cartesc_set_pres()

subroutine, public scale_file_history_cartesc::file_history_cartesc_set_pres ( real(rp), dimension (:,:,:), intent(in)  PRES,
real(rp), dimension (:,:,:), intent(in)  PRESH,
real(rp), dimension( :,:), intent(in)  SFC_PRES 
)

set hydrostatic pressure for pressure coordinate

Definition at line 251 of file scale_file_history_cartesC.F90.

References scale_file_history::file_history_set_dim(), scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::ieb, scale_atmos_grid_cartesc_index::imax, scale_atmos_grid_cartesc_index::imaxb, scale_interp_vert::interp_vert_setcoef_pres(), scale_atmos_grid_cartesc_index::isb, scale_atmos_grid_cartesc_index::isgb, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::jeb, scale_atmos_grid_cartesc_index::jmax, scale_atmos_grid_cartesc_index::jmaxb, scale_atmos_grid_cartesc_index::jsb, scale_atmos_grid_cartesc_index::jsgb, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, scale_atmos_grid_cartesc_index::kmax, scale_atmos_grid_cartesc_index::ks, scale_land_grid_cartesc_index::lkmax, scale_mapprojection::mapprojection_get_attributes(), scale_ocean_grid_cartesc_index::okmax, scale_prc_cartesc::prc_2drank, scale_prc_cartesc::prc_has_s, scale_prc_cartesc::prc_has_w, scale_prc::prc_myrank, and scale_urban_grid_cartesc_index::ukmax.

Referenced by mod_atmos_vars::atmos_vars_history_setpres().

251  use scale_interp_vert, only: &
253  implicit none
254 
255  real(RP), intent(in) :: pres (:,:,:) ! pressure at the full level [Pa]
256  real(RP), intent(in) :: presh (:,:,:) ! pressure at the half level [Pa]
257  real(RP), intent(in) :: sfc_pres( :,:) ! surface pressure [Pa]
258  !---------------------------------------------------------------------------
259 
260  if ( file_history_cartesc_pres_nlayer > 0 ) then
261  call interp_vert_setcoef_pres( file_history_cartesc_pres_nlayer, & ! [IN]
262  ka, ks, ke, & ! [IN]
263  ia, isb, ieb, & ! [IN]
264  ja, jsb, jeb, & ! [IN]
265  pres(:,:,:), & ! [IN]
266  presh(:,:,:), & ! [IN]
267  sfc_pres(:,:) , & ! [IN]
268  file_history_cartesc_pres_val(:) ) ! [IN]
269  endif
270 
271  return
integer, public ia
of whole cells: x, local, with HALO
module INTERPOLATION vertical
integer, public ja
of whole cells: y, local, with HALO
integer, public ke
end point of inner domain: z, local
integer, public ks
start point of inner domain: z, local
subroutine, public interp_vert_setcoef_pres(Kpres, KA, KS, KE, IA, IS, IE, JA, JS, JE, PRES, PRESh, SFC_PRES, Paxis)
integer, public ka
of whole cells: z, local, with HALO
Here is the call graph for this function:
Here is the caller graph for this function:

◆ file_history_cartesc_truncate_1d()

subroutine scale_file_history_cartesc::file_history_cartesc_truncate_1d ( real(rp), dimension(:), intent(in)  src,
character(len=*), intent(in)  dim_type,
character(len=*), intent(in)  zcoord,
logical, intent(in)  fill_halo,
real(dp), dimension(:), intent(out)  dst 
)

truncate 1D data to history buffer

Definition at line 462 of file scale_file_history_cartesC.F90.

References scale_file_h::file_rmiss, scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::kmax, scale_atmos_grid_cartesc_index::ks, scale_land_grid_cartesc_index::lkmax, scale_land_grid_cartesc_index::lks, scale_ocean_grid_cartesc_index::okmax, scale_ocean_grid_cartesc_index::oks, scale_prc::prc_abort(), scale_urban_grid_cartesc_index::ukmax, and scale_urban_grid_cartesc_index::uks.

Referenced by file_history_cartesc_setup().

462  implicit none
463 
464  real(RP), intent(in) :: src(:)
465  character(len=*), intent(in) :: dim_type
466  character(len=*), intent(in) :: zcoord
467  logical, intent(in) :: fill_halo ! ignored
468 
469  real(DP), intent(out) :: dst(:)
470 
471  integer :: ksize
472  integer :: kstart
473  integer :: k
474  !---------------------------------------------------------------------------
475 
476  ! select dimension
477  select case ( dim_type )
478  case ('Z')
479  ksize = kmax
480  kstart = ks
481  case ('ZH')
482  ksize = kmax+1
483  kstart = ks-1
484  case ('OZ')
485  ksize = okmax
486  kstart = oks
487  case ('OZH')
488  ksize = okmax+1
489  kstart = oks-1
490  case ('LZ')
491  ksize = lkmax
492  kstart = lks
493  case ('LZH')
494  ksize = lkmax+1
495  kstart = lks-1
496  case ('UZ')
497  ksize = ukmax
498  kstart = uks
499  case ('UZH')
500  ksize = ukmax+1
501  kstart = uks-1
502  case default
503  log_error("FILE_HISTORY_CARTESC_truncate_1D",*) 'dim_type is invalid: ', trim(dim_type)
504  call prc_abort
505  end select
506 
507  do k = 1, ksize
508  dst(k) = src(kstart+k-1)
509  enddo
510 
511  return
integer, public ks
start point of inner domain: z, local
integer, public kmax
of computational cells: z, local
Here is the call graph for this function:
Here is the caller graph for this function:

◆ file_history_cartesc_truncate_3d()

subroutine scale_file_history_cartesc::file_history_cartesc_truncate_3d ( real(rp), dimension(:,:,:), intent(in)  src,
character(len=*), intent(in)  dim_type,
character(len=*), intent(in)  zcoord,
logical, intent(in)  fill_halo,
real(dp), dimension(:), intent(out)  dst 
)

truncate 3D data to history buffer

Definition at line 605 of file scale_file_history_cartesC.F90.

References scale_atmos_grid_cartesc::atmos_grid_cartesc_cbfx, scale_atmos_grid_cartesc::atmos_grid_cartesc_cbfxg, scale_atmos_grid_cartesc::atmos_grid_cartesc_cbfy, scale_atmos_grid_cartesc::atmos_grid_cartesc_cbfyg, scale_atmos_grid_cartesc::atmos_grid_cartesc_cbfz, scale_atmos_grid_cartesc::atmos_grid_cartesc_cdx, scale_atmos_grid_cartesc::atmos_grid_cartesc_cdxg, scale_atmos_grid_cartesc::atmos_grid_cartesc_cdy, scale_atmos_grid_cartesc::atmos_grid_cartesc_cdyg, scale_atmos_grid_cartesc::atmos_grid_cartesc_cdz, scale_atmos_grid_cartesc::atmos_grid_cartesc_cx, scale_atmos_grid_cartesc::atmos_grid_cartesc_cxg, scale_atmos_grid_cartesc::atmos_grid_cartesc_cy, scale_atmos_grid_cartesc::atmos_grid_cartesc_cyg, scale_atmos_grid_cartesc::atmos_grid_cartesc_cz, scale_atmos_grid_cartesc::atmos_grid_cartesc_fbfx, scale_atmos_grid_cartesc::atmos_grid_cartesc_fbfxg, scale_atmos_grid_cartesc::atmos_grid_cartesc_fbfy, scale_atmos_grid_cartesc::atmos_grid_cartesc_fbfyg, scale_atmos_grid_cartesc::atmos_grid_cartesc_fbfz, scale_atmos_grid_cartesc::atmos_grid_cartesc_fdx, scale_atmos_grid_cartesc::atmos_grid_cartesc_fdxg, scale_atmos_grid_cartesc::atmos_grid_cartesc_fdy, scale_atmos_grid_cartesc::atmos_grid_cartesc_fdyg, scale_atmos_grid_cartesc::atmos_grid_cartesc_fdz, scale_atmos_grid_cartesc::atmos_grid_cartesc_fx, scale_atmos_grid_cartesc::atmos_grid_cartesc_fxg, scale_atmos_grid_cartesc::atmos_grid_cartesc_fy, scale_atmos_grid_cartesc::atmos_grid_cartesc_fyg, scale_atmos_grid_cartesc::atmos_grid_cartesc_fz, scale_atmos_grid_cartesc::atmos_grid_cartesc_name, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_area, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areauy, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areawuy_x, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areawxv_y, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areaxv, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areazuv_x, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areazuv_y, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areazuy_x, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areazxv_y, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areazxy_x, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_areazxy_y, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_cz, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_fz, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_lat, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_latuv, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_latuy, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_latxv, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_lon, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_lonuv, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_lonuy, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_lonxv, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_vol, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_volwxy, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_volzuy, scale_atmos_grid_cartesc_real::atmos_grid_cartesc_real_volzxv, scale_calendar::calendar_get_name(), scale_const::const_d2r, scale_const::const_undef, scale_file::file_get_cftunits(), scale_file_history::file_history_aggregate, scale_file_history::file_history_set_axis(), scale_file_h::file_rmiss, scale_atmos_grid_cartesc_index::ia, scale_atmos_grid_cartesc_index::iag, scale_atmos_grid_cartesc_index::iagb, scale_atmos_grid_cartesc_index::ie, scale_atmos_grid_cartesc_index::ie_ing, scale_atmos_grid_cartesc_index::ieb, scale_atmos_grid_cartesc_index::ihalo, scale_atmos_grid_cartesc_index::imax, scale_atmos_grid_cartesc_index::imaxg, scale_interp_vert::interp_available, scale_interp_vert::interp_vert_xi2p(), scale_interp_vert::interp_vert_xi2z(), scale_interp_vert::interp_vert_xih2p(), scale_interp_vert::interp_vert_xih2zh(), scale_atmos_grid_cartesc_index::is, scale_atmos_grid_cartesc_index::is_ing, scale_atmos_grid_cartesc_index::isb, scale_atmos_grid_cartesc_index::isga, scale_atmos_grid_cartesc_index::isgb, scale_atmos_grid_cartesc_index::ja, scale_atmos_grid_cartesc_index::jag, scale_atmos_grid_cartesc_index::jagb, scale_atmos_grid_cartesc_index::je, scale_atmos_grid_cartesc_index::je_ing, scale_atmos_grid_cartesc_index::jeb, scale_atmos_grid_cartesc_index::jhalo, scale_atmos_grid_cartesc_index::jmax, scale_atmos_grid_cartesc_index::jmaxg, scale_atmos_grid_cartesc_index::js, scale_atmos_grid_cartesc_index::js_ing, scale_atmos_grid_cartesc_index::jsb, scale_atmos_grid_cartesc_index::jsga, scale_atmos_grid_cartesc_index::jsgb, scale_atmos_grid_cartesc_index::ka, scale_atmos_grid_cartesc_index::ke, scale_atmos_grid_cartesc_index::khalo, scale_atmos_grid_cartesc_index::kmax, scale_atmos_grid_cartesc_index::ks, scale_land_grid_cartesc::land_grid_cartesc_cdz, scale_land_grid_cartesc::land_grid_cartesc_cz, scale_land_grid_cartesc::land_grid_cartesc_fz, scale_land_grid_cartesc_real::land_grid_cartesc_real_vol, scale_landuse::landuse_frac_land, scale_land_grid_cartesc_index::lka, scale_land_grid_cartesc_index::lke, scale_land_grid_cartesc_index::lkmax, scale_land_grid_cartesc_index::lks, scale_mapprojection::mapprojection_get_attributes(), scale_ocean_grid_cartesc::ocean_grid_cartesc_cdz, scale_ocean_grid_cartesc::ocean_grid_cartesc_cz, scale_ocean_grid_cartesc::ocean_grid_cartesc_fz, scale_ocean_grid_cartesc_real::ocean_grid_cartesc_real_vol, scale_ocean_grid_cartesc_index::oka, scale_ocean_grid_cartesc_index::oke, scale_ocean_grid_cartesc_index::okmax, scale_ocean_grid_cartesc_index::oks, scale_prc_cartesc::prc_2drank, scale_prc::prc_abort(), scale_prc_cartesc::prc_has_e, scale_prc_cartesc::prc_has_n, scale_prc_cartesc::prc_has_s, scale_prc_cartesc::prc_has_w, scale_prc::prc_myrank, scale_prc_cartesc::prc_num_x, scale_prc_cartesc::prc_num_y, scale_prc_cartesc::prc_periodic_x, scale_prc_cartesc::prc_periodic_y, scale_prof::prof_rapend(), scale_prof::prof_rapstart(), scale_topography::topo_zsfc, scale_urban_grid_cartesc_index::uka, scale_urban_grid_cartesc_index::uke, scale_urban_grid_cartesc_index::ukmax, scale_urban_grid_cartesc_index::uks, scale_urban_grid_cartesc::urban_grid_cartesc_cdz, scale_urban_grid_cartesc::urban_grid_cartesc_cz, scale_urban_grid_cartesc::urban_grid_cartesc_fz, and scale_urban_grid_cartesc_real::urban_grid_cartesc_real_vol.

Referenced by file_history_cartesc_setup().

605  use scale_file_h, only: &
606  rmiss => file_rmiss
607  use scale_atmos_grid_cartesc, only: &
610  use scale_atmos_grid_cartesc_real, only: &
613  use scale_interp_vert, only: &
619  implicit none
620 
621  real(RP), intent(in) :: src(:,:,:)
622  character(len=*), intent(in) :: dim_type
623  character(len=*), intent(in) :: zcoord
624  logical, intent(in) :: fill_halo
625  real(DP), intent(out) :: dst(:)
626 
627  real(RP) :: src_z(ka,ia,ja)
628  real(RP) :: src_p(file_history_cartesc_pres_nlayer,ia,ja)
629 
630  integer :: isize, jsize, ksize
631  integer :: istart, jstart, kstart
632  integer :: i, j, k
633  !---------------------------------------------------------------------------
634 
635  ! select dimension
636  if ( index( dim_type, 'XH' ) == 0 ) then
637  isize = im
638  istart = ims
639  else
640  isize = imh
641  istart = imsh
642  end if
643 
644  if ( index( dim_type, 'YH' ) == 0 ) then
645  jsize = jm
646  jstart = jms
647  else
648  jsize = jmh
649  jstart = jmsh
650  end if
651 
652  select case( dim_type(1:1) )
653  case ( 'Z' )
654  ksize = kmax
655  kstart = ks
656  case('O')
657  ksize = okmax
658  kstart = oks
659  case('L')
660  ksize = lkmax
661  kstart = lks
662  case('U')
663  ksize = ukmax
664  kstart = uks
665  case default
666  log_error("FILE_HISTORY_CARTESC_truncate_3D",*) 'dim_type is invalid: ', trim(dim_type)
667  call prc_abort
668  end select
669  if ( dim_type(2:2) == 'H' ) then
670  ksize = ksize + 1
671  kstart = kstart - 1
672  end if
673 
674 
675  if ( ksize == kmax .and. zcoord == "z" .and. interp_available ) then ! z*->z interpolation (full level)
676 
677  call prof_rapstart('FILE_O_interp', 2)
678  call interp_vert_xi2z( ka, ks, ke, ia, isb, ieb, ja, jsb, jeb, &
679  atmos_grid_cartesc_cz(:), & ! [IN]
680  atmos_grid_cartesc_real_cz(:,:,:), & ! [IN]
681  src(:,:,:), & ! [IN]
682  src_z(:,:,:) ) ! [OUT]
683  call prof_rapend ('FILE_O_interp', 2)
684 
685  !$omp parallel do
686  do k = 1, ksize
687  do j = 1, jsize
688  do i = 1, isize
689  dst((k-1)*jsize*isize+(j-1)*isize+i) = src_z(kstart+k-1,istart+i-1,jstart+j-1)
690  enddo
691  enddo
692  enddo
693 
694  else if( ksize == kmax+1 .and. zcoord == "z" .and. interp_available ) then ! z*->z interpolation (half level)
695 
696 
697  call prof_rapstart('FILE_O_interp', 2)
698  call interp_vert_xih2zh( ka, ks, ke, ia, isb, ieb, ja, jsb, jeb, &
699  atmos_grid_cartesc_fz(:), & ! [IN]
700  atmos_grid_cartesc_real_fz(:,:,:), & ! [IN]
701  src(:,:,:), & ! [IN]
702  src_z(:,:,:) ) ! [OUT]
703  call prof_rapend ('FILE_O_interp', 2)
704 
705  !$omp parallel do
706  do k = 1, ksize
707  do j = 1, jsize
708  do i = 1, isize
709  dst((k-1)*jsize*isize+(j-1)*isize+i) = src_z(kstart+k-1,istart+i-1,jstart+j-1)
710  enddo
711  enddo
712  enddo
713 
714  elseif( ksize == kmax .and. zcoord == "pressure" ) then ! z*->p interpolation (full level)
715  ksize = file_history_cartesc_pres_nlayer
716  if ( ksize == 0 ) then
717  log_error("FILE_HISTORY_CARTESC_truncate_3D",*) 'FILE_HISTORY_CARTESC_PRES_nlayer must be set to output variable with the pressure coordinate'
718  call prc_abort
719  end if
720 
721  call prof_rapstart('FILE_O_interp', 2)
722  call interp_vert_xi2p( file_history_cartesc_pres_nlayer, & ! [IN]
723  ka, & ! [IN]
724  ia, isb, ieb, & ! [IN]
725  ja, jsb, jeb, & ! [IN]
726  src(:,:,:), & ! [IN]
727  src_p(:,:,:) ) ! [OUT]
728  call prof_rapend ('FILE_O_interp', 2)
729 
730  !$omp parallel do
731  do k = 1, ksize
732  do j = 1, jsize
733  do i = 1, isize
734  dst((k-1)*jsize*isize+(j-1)*isize+i) = src_p(k,istart+i-1,jstart+j-1)
735  enddo
736  enddo
737  enddo
738 
739  elseif( ksize == kmax+1 .and. zcoord == "pressure" ) then ! z*->p interpolation (half level)
740  ksize = file_history_cartesc_pres_nlayer
741  if ( ksize == 0 ) then
742  log_error("FILE_HISTORY_CARTESC_truncate_3D",*) 'FILE_HISTORY_CARTESC_PRES_nlayer must be set to output variable with the pressure coordinate'
743  call prc_abort
744  end if
745 
746  call prof_rapstart('FILE_O_interp', 2)
747  call interp_vert_xih2p( file_history_cartesc_pres_nlayer, & ! [IN]
748  ka, & ! [IN]
749  ia, isb, ieb, & ! [IN]
750  ja, jsb, jeb, & ! [IN]
751  src(:,:,:), & ! [IN]
752  src_p(:,:,:) ) ! [OUT]
753  call prof_rapend ('FILE_O_interp', 2)
754 
755  do k = 1, ksize
756  do j = 1, jsize
757  do i = 1, isize
758  dst((k-1)*jsize*isize+(j-1)*isize+i) = src_p(k,istart+i-1,jstart+j-1)
759  enddo
760  enddo
761  enddo
762 
763  else ! no interpolation
764 
765  do k = 1, ksize
766  do j = 1, jsize
767  do i = 1, isize
768  dst((k-1)*jsize*isize+(j-1)*isize+i) = src(kstart+k-1,istart+i-1,jstart+j-1)
769  enddo
770  enddo
771  enddo
772 
773  endif
774 
775  if ( fill_halo ) then
776  ! W halo
777  do k = 1, ksize
778  do j = 1, jsize
779  do i = 1, is-istart
780  dst((k-1)*jsize*isize+(j-1)*isize+i) = rmiss
781  enddo
782  enddo
783  enddo
784  ! E halo
785  do k = 1, ksize
786  do j = 1, jsize
787  do i = ie-istart+2, ime-istart+1
788  dst((k-1)*jsize*isize+(j-1)*isize+i) = rmiss
789  enddo
790  enddo
791  enddo
792  ! S halo
793  do k = 1, ksize
794  do j = 1, js-jstart
795  do i = 1, isize
796  dst((k-1)*jsize*isize+(j-1)*isize+i) = rmiss
797  enddo
798  enddo
799  enddo
800  ! N halo
801  do k = 1, ksize
802  do j = je-jstart+2, jme-jstart+1
803  do i = 1, isize
804  dst((k-1)*jsize*isize+(j-1)*isize+i) = rmiss
805  enddo
806  enddo
807  enddo
808  endif
809 
810  return
subroutine, public interp_vert_xi2p(Kpres, KA, IA, IS, IE, JA, JS, JE, var, var_P)
integer, public ia
of whole cells: x, local, with HALO
logical, public interp_available
topography exists & vertical interpolation has meaning?
module INTERPOLATION vertical
real(rp), dimension(:,:,:), allocatable, public atmos_grid_cartesc_real_fz
geopotential height [m] (wxy)
integer, public ja
of whole cells: y, local, with HALO
subroutine, public interp_vert_xi2z(KA, KS, KE, IA, IS, IE, JA, JS, JE, Xi, Z, var, var_Z)
real(rp), dimension(:), allocatable, public atmos_grid_cartesc_fz
face coordinate [m]: z, local
integer, public is
start point of inner domain: x, local
integer, public ie
end point of inner domain: x, local
integer, public ke
end point of inner domain: z, local
integer, public je
end point of inner domain: y, local
module atmosphere / grid / cartesC
integer, public ks
start point of inner domain: z, local
integer, public kmax
of computational cells: z, local
subroutine, public interp_vert_xih2zh(KA, KS, KE, IA, IS, IE, JA, JS, JE, Xih, Zh, var, var_Z)
real(dp), parameter, public file_rmiss
integer, public js
start point of inner domain: y, local
real(rp), dimension(:,:,:), allocatable, public atmos_grid_cartesc_real_cz
geopotential height [m] (zxy)
module Atmosphere GRID CartesC Real(real space)
subroutine, public interp_vert_xih2p(Kpres, KA, IA, IS, IE, JA, JS, JE, var, var_P)
integer, public ka
of whole cells: z, local, with HALO
real(rp), dimension(:), allocatable, public atmos_grid_cartesc_cz
center coordinate [m]: z, local
module file_h
Here is the call graph for this function:
Here is the caller graph for this function: